blob: 0dbd2d2937f76b7de364526797f00fce26c48050 [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>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include <linux/fcntl.h>
31#include <linux/stat.h>
32#include <linux/string.h>
33#include <linux/quotaops.h>
34#include <linux/buffer_head.h>
35#include <linux/bio.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040036#include "ext4.h"
37#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070038
Dave Kleikampac27a0e2006-10-11 01:20:50 -070039#include "xattr.h"
40#include "acl.h"
41
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040042#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043/*
44 * define how far ahead to read directories while searching them.
45 */
46#define NAMEI_RA_CHUNKS 2
47#define NAMEI_RA_BLOCKS 4
Dave Kleikamp8c55e202007-05-24 13:04:54 -040048#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Mingming Cao617ba132006-10-11 01:20:53 -070050static struct buffer_head *ext4_append(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070051 struct inode *inode,
Theodore Ts'o0f70b402013-02-15 03:35:57 -050052 ext4_lblk_t *block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070053{
54 struct buffer_head *bh;
Theodore Ts'o1c215022014-08-29 20:52:15 -040055 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070056
Theodore Ts'odf981d02012-08-17 09:48:17 -040057 if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
58 ((inode->i_size >> 10) >=
Theodore Ts'o0f70b402013-02-15 03:35:57 -050059 EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
60 return ERR_PTR(-ENOSPC);
Theodore Ts'odf981d02012-08-17 09:48:17 -040061
Dave Kleikampac27a0e2006-10-11 01:20:50 -070062 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
63
Theodore Ts'o1c215022014-08-29 20:52:15 -040064 bh = ext4_bread(handle, inode, *block, 1);
65 if (IS_ERR(bh))
66 return bh;
Theodore Ts'o0f70b402013-02-15 03:35:57 -050067 inode->i_size += inode->i_sb->s_blocksize;
68 EXT4_I(inode)->i_disksize = inode->i_size;
liang xie5d601252014-05-12 22:06:43 -040069 BUFFER_TRACE(bh, "get_write_access");
Theodore Ts'o0f70b402013-02-15 03:35:57 -050070 err = ext4_journal_get_write_access(handle, bh);
71 if (err) {
72 brelse(bh);
73 ext4_std_error(inode->i_sb, err);
74 return ERR_PTR(err);
Carlos Maiolino6d1ab102012-09-27 09:31:33 -040075 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -070076 return bh;
77}
78
Theodore Ts'odc6982f2013-02-14 23:59:26 -050079static int ext4_dx_csum_verify(struct inode *inode,
80 struct ext4_dir_entry *dirent);
81
82typedef enum {
83 EITHER, INDEX, DIRENT
84} dirblock_type_t;
85
86#define ext4_read_dirblock(inode, block, type) \
87 __ext4_read_dirblock((inode), (block), (type), __LINE__)
88
89static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
90 ext4_lblk_t block,
91 dirblock_type_t type,
92 unsigned int line)
93{
94 struct buffer_head *bh;
95 struct ext4_dir_entry *dirent;
Theodore Ts'o1c215022014-08-29 20:52:15 -040096 int is_dx_block = 0;
Theodore Ts'odc6982f2013-02-14 23:59:26 -050097
Theodore Ts'o1c215022014-08-29 20:52:15 -040098 bh = ext4_bread(NULL, inode, block, 0);
99 if (IS_ERR(bh)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500100 __ext4_warning(inode->i_sb, __func__, line,
Theodore Ts'o1c215022014-08-29 20:52:15 -0400101 "error %ld reading directory block "
102 "(ino %lu, block %lu)", PTR_ERR(bh), inode->i_ino,
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500103 (unsigned long) block);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400104
105 return bh;
106 }
107 if (!bh) {
108 ext4_error_inode(inode, __func__, line, block, "Directory hole found");
109 return ERR_PTR(-EIO);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500110 }
111 dirent = (struct ext4_dir_entry *) bh->b_data;
112 /* Determine whether or not we have an index block */
113 if (is_dx(inode)) {
114 if (block == 0)
115 is_dx_block = 1;
116 else if (ext4_rec_len_from_disk(dirent->rec_len,
117 inode->i_sb->s_blocksize) ==
118 inode->i_sb->s_blocksize)
119 is_dx_block = 1;
120 }
121 if (!is_dx_block && type == INDEX) {
122 ext4_error_inode(inode, __func__, line, block,
123 "directory leaf block found instead of index block");
124 return ERR_PTR(-EIO);
125 }
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400126 if (!ext4_has_metadata_csum(inode->i_sb) ||
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500127 buffer_verified(bh))
128 return bh;
129
130 /*
131 * An empty leaf block can get mistaken for a index block; for
132 * this reason, we can only check the index checksum when the
133 * caller is sure it should be an index block.
134 */
135 if (is_dx_block && type == INDEX) {
136 if (ext4_dx_csum_verify(inode, dirent))
137 set_buffer_verified(bh);
138 else {
139 ext4_error_inode(inode, __func__, line, block,
140 "Directory index failed checksum");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700141 brelse(bh);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500142 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700143 }
144 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500145 if (!is_dx_block) {
146 if (ext4_dirent_csum_verify(inode, dirent))
147 set_buffer_verified(bh);
148 else {
149 ext4_error_inode(inode, __func__, line, block,
150 "Directory block failed checksum");
151 brelse(bh);
152 return ERR_PTR(-EIO);
153 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700154 }
155 return bh;
156}
157
158#ifndef assert
159#define assert(test) J_ASSERT(test)
160#endif
161
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162#ifdef DX_DEBUG
163#define dxtrace(command) command
164#else
165#define dxtrace(command)
166#endif
167
168struct fake_dirent
169{
170 __le32 inode;
171 __le16 rec_len;
172 u8 name_len;
173 u8 file_type;
174};
175
176struct dx_countlimit
177{
178 __le16 limit;
179 __le16 count;
180};
181
182struct dx_entry
183{
184 __le32 hash;
185 __le32 block;
186};
187
188/*
189 * dx_root_info is laid out so that if it should somehow get overlaid by a
190 * dirent the two low bits of the hash version will be zero. Therefore, the
191 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
192 */
193
194struct dx_root
195{
196 struct fake_dirent dot;
197 char dot_name[4];
198 struct fake_dirent dotdot;
199 char dotdot_name[4];
200 struct dx_root_info
201 {
202 __le32 reserved_zero;
203 u8 hash_version;
204 u8 info_length; /* 8 */
205 u8 indirect_levels;
206 u8 unused_flags;
207 }
208 info;
209 struct dx_entry entries[0];
210};
211
212struct dx_node
213{
214 struct fake_dirent fake;
215 struct dx_entry entries[0];
216};
217
218
219struct dx_frame
220{
221 struct buffer_head *bh;
222 struct dx_entry *entries;
223 struct dx_entry *at;
224};
225
226struct dx_map_entry
227{
228 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700229 u16 offs;
230 u16 size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231};
232
Darrick J. Wonge6153912012-04-29 18:23:10 -0400233/*
234 * This goes at the end of each htree block.
235 */
236struct dx_tail {
237 u32 dt_reserved;
238 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
239};
240
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500241static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
242static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400243static inline unsigned dx_get_hash(struct dx_entry *entry);
244static void dx_set_hash(struct dx_entry *entry, unsigned value);
245static unsigned dx_get_count(struct dx_entry *entries);
246static unsigned dx_get_limit(struct dx_entry *entries);
247static void dx_set_count(struct dx_entry *entries, unsigned value);
248static void dx_set_limit(struct dx_entry *entries, unsigned value);
249static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
250static unsigned dx_node_limit(struct inode *dir);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400251static struct dx_frame *dx_probe(const struct qstr *d_name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700252 struct inode *dir,
253 struct dx_hash_info *hinfo,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400254 struct dx_frame *frame);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400255static void dx_release(struct dx_frame *frames);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500256static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400257 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258static void dx_sort_map(struct dx_map_entry *map, unsigned count);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400259static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500260 struct dx_map_entry *offsets, int count, unsigned blocksize);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500261static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500262static void dx_insert_block(struct dx_frame *frame,
263 u32 hash, ext4_lblk_t block);
Mingming Cao617ba132006-10-11 01:20:53 -0700264static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700265 struct dx_frame *frame,
266 struct dx_frame *frames,
267 __u32 *start_hash);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400268static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
269 const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -0400270 struct ext4_dir_entry_2 **res_dir);
Mingming Cao617ba132006-10-11 01:20:53 -0700271static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700272 struct inode *inode);
273
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400274/* checksumming functions */
Tao Ma3c47d542012-12-10 14:05:59 -0500275void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
276 unsigned int blocksize)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400277{
278 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
279 t->det_rec_len = ext4_rec_len_to_disk(
280 sizeof(struct ext4_dir_entry_tail), blocksize);
281 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
282}
283
284/* Walk through a dirent block to find a checksum "dirent" at the tail */
285static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
286 struct ext4_dir_entry *de)
287{
288 struct ext4_dir_entry_tail *t;
289
290#ifdef PARANOID
291 struct ext4_dir_entry *d, *top;
292
293 d = de;
294 top = (struct ext4_dir_entry *)(((void *)de) +
295 (EXT4_BLOCK_SIZE(inode->i_sb) -
296 sizeof(struct ext4_dir_entry_tail)));
297 while (d < top && d->rec_len)
298 d = (struct ext4_dir_entry *)(((void *)d) +
299 le16_to_cpu(d->rec_len));
300
301 if (d != top)
302 return NULL;
303
304 t = (struct ext4_dir_entry_tail *)d;
305#else
306 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
307#endif
308
309 if (t->det_reserved_zero1 ||
310 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
311 t->det_reserved_zero2 ||
312 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
313 return NULL;
314
315 return t;
316}
317
318static __le32 ext4_dirent_csum(struct inode *inode,
319 struct ext4_dir_entry *dirent, int size)
320{
321 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
322 struct ext4_inode_info *ei = EXT4_I(inode);
323 __u32 csum;
324
325 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
326 return cpu_to_le32(csum);
327}
328
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500329static void warn_no_space_for_csum(struct inode *inode)
330{
331 ext4_warning(inode->i_sb, "no space in directory inode %lu leaf for "
332 "checksum. Please run e2fsck -D.", inode->i_ino);
333}
334
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400335int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
336{
337 struct ext4_dir_entry_tail *t;
338
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400339 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400340 return 1;
341
342 t = get_dirent_tail(inode, dirent);
343 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500344 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400345 return 0;
346 }
347
348 if (t->det_checksum != ext4_dirent_csum(inode, dirent,
349 (void *)t - (void *)dirent))
350 return 0;
351
352 return 1;
353}
354
355static void ext4_dirent_csum_set(struct inode *inode,
356 struct ext4_dir_entry *dirent)
357{
358 struct ext4_dir_entry_tail *t;
359
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400360 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400361 return;
362
363 t = get_dirent_tail(inode, dirent);
364 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500365 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400366 return;
367 }
368
369 t->det_checksum = ext4_dirent_csum(inode, dirent,
370 (void *)t - (void *)dirent);
371}
372
Tao Ma3c47d542012-12-10 14:05:59 -0500373int ext4_handle_dirty_dirent_node(handle_t *handle,
374 struct inode *inode,
375 struct buffer_head *bh)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400376{
377 ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
378 return ext4_handle_dirty_metadata(handle, inode, bh);
379}
380
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400381static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
382 struct ext4_dir_entry *dirent,
383 int *offset)
384{
385 struct ext4_dir_entry *dp;
386 struct dx_root_info *root;
387 int count_offset;
388
389 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
390 count_offset = 8;
391 else if (le16_to_cpu(dirent->rec_len) == 12) {
392 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
393 if (le16_to_cpu(dp->rec_len) !=
394 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
395 return NULL;
396 root = (struct dx_root_info *)(((void *)dp + 12));
397 if (root->reserved_zero ||
398 root->info_length != sizeof(struct dx_root_info))
399 return NULL;
400 count_offset = 32;
401 } else
402 return NULL;
403
404 if (offset)
405 *offset = count_offset;
406 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
407}
408
409static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
410 int count_offset, int count, struct dx_tail *t)
411{
412 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
413 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400414 __u32 csum;
415 __le32 save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400416 int size;
417
418 size = count_offset + (count * sizeof(struct dx_entry));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400419 save_csum = t->dt_checksum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400420 t->dt_checksum = 0;
421 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
422 csum = ext4_chksum(sbi, csum, (__u8 *)t, sizeof(struct dx_tail));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400423 t->dt_checksum = save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400424
425 return cpu_to_le32(csum);
426}
427
428static int ext4_dx_csum_verify(struct inode *inode,
429 struct ext4_dir_entry *dirent)
430{
431 struct dx_countlimit *c;
432 struct dx_tail *t;
433 int count_offset, limit, count;
434
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400435 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400436 return 1;
437
438 c = get_dx_countlimit(inode, dirent, &count_offset);
439 if (!c) {
440 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
441 return 1;
442 }
443 limit = le16_to_cpu(c->limit);
444 count = le16_to_cpu(c->count);
445 if (count_offset + (limit * sizeof(struct dx_entry)) >
446 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500447 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400448 return 1;
449 }
450 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
451
452 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
453 count, t))
454 return 0;
455 return 1;
456}
457
458static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
459{
460 struct dx_countlimit *c;
461 struct dx_tail *t;
462 int count_offset, limit, count;
463
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400464 if (!ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400465 return;
466
467 c = get_dx_countlimit(inode, dirent, &count_offset);
468 if (!c) {
469 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
470 return;
471 }
472 limit = le16_to_cpu(c->limit);
473 count = le16_to_cpu(c->count);
474 if (count_offset + (limit * sizeof(struct dx_entry)) >
475 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500476 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400477 return;
478 }
479 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
480
481 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
482}
483
484static inline int ext4_handle_dirty_dx_node(handle_t *handle,
485 struct inode *inode,
486 struct buffer_head *bh)
487{
488 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
489 return ext4_handle_dirty_metadata(handle, inode, bh);
490}
491
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700492/*
Li Zefanf795e142008-07-11 19:27:31 -0400493 * p is at least 6 bytes before the end of page
494 */
495static inline struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500496ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
Li Zefanf795e142008-07-11 19:27:31 -0400497{
498 return (struct ext4_dir_entry_2 *)((char *)p +
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500499 ext4_rec_len_from_disk(p->rec_len, blocksize));
Li Zefanf795e142008-07-11 19:27:31 -0400500}
501
502/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700503 * Future: use high four bits of block for coalesce-on-delete flags
504 * Mask them off for now.
505 */
506
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500507static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700508{
509 return le32_to_cpu(entry->block) & 0x00ffffff;
510}
511
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500512static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700513{
514 entry->block = cpu_to_le32(value);
515}
516
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400517static inline unsigned dx_get_hash(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700518{
519 return le32_to_cpu(entry->hash);
520}
521
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400522static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523{
524 entry->hash = cpu_to_le32(value);
525}
526
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400527static inline unsigned dx_get_count(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700528{
529 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
530}
531
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400532static inline unsigned dx_get_limit(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700533{
534 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
535}
536
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400537static inline void dx_set_count(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700538{
539 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
540}
541
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400542static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700543{
544 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
545}
546
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400547static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548{
Mingming Cao617ba132006-10-11 01:20:53 -0700549 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
550 EXT4_DIR_REC_LEN(2) - infosize;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400551
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400552 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400553 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400554 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700555}
556
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400557static inline unsigned dx_node_limit(struct inode *dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558{
Mingming Cao617ba132006-10-11 01:20:53 -0700559 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400560
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -0400561 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400562 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400563 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564}
565
566/*
567 * Debug
568 */
569#ifdef DX_DEBUG
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400570static void dx_show_index(char * label, struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700571{
Andrew Morton63f57932006-10-11 01:21:24 -0700572 int i, n = dx_get_count (entries);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400573 printk(KERN_DEBUG "%s index ", label);
Andrew Morton63f57932006-10-11 01:21:24 -0700574 for (i = 0; i < n; i++) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400575 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500576 0, (unsigned long)dx_get_block(entries + i));
Andrew Morton63f57932006-10-11 01:21:24 -0700577 }
578 printk("\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579}
580
581struct stats
582{
583 unsigned names;
584 unsigned space;
585 unsigned bcount;
586};
587
Mingming Cao617ba132006-10-11 01:20:53 -0700588static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700589 int size, int show_names)
590{
591 unsigned names = 0, space = 0;
592 char *base = (char *) de;
593 struct dx_hash_info h = *hinfo;
594
595 printk("names: ");
596 while ((char *) de < base + size)
597 {
598 if (de->inode)
599 {
600 if (show_names)
601 {
602 int len = de->name_len;
603 char *name = de->name;
604 while (len--) printk("%c", *name++);
Mingming Cao617ba132006-10-11 01:20:53 -0700605 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700606 printk(":%x.%u ", h.hash,
Bernd Schubert265c6a02011-07-16 19:41:23 -0400607 (unsigned) ((char *) de - base));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700608 }
Mingming Cao617ba132006-10-11 01:20:53 -0700609 space += EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610 names++;
611 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500612 de = ext4_next_entry(de, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700613 }
614 printk("(%i)\n", names);
615 return (struct stats) { names, space, 1 };
616}
617
618struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
619 struct dx_entry *entries, int levels)
620{
621 unsigned blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400622 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623 unsigned bcount = 0;
624 struct buffer_head *bh;
625 int err;
626 printk("%i indexed blocks...\n", count);
627 for (i = 0; i < count; i++, entries++)
628 {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500629 ext4_lblk_t block = dx_get_block(entries);
630 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
632 struct stats stats;
633 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
Theodore Ts'o1c215022014-08-29 20:52:15 -0400634 bh = ext4_bread(NULL,dir, block, 0);
635 if (!bh || IS_ERR(bh))
636 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637 stats = levels?
638 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
Mingming Cao617ba132006-10-11 01:20:53 -0700639 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 names += stats.names;
641 space += stats.space;
642 bcount += stats.bcount;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400643 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700644 }
645 if (bcount)
Theodore Ts'o60e66792010-05-17 07:00:00 -0400646 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400647 levels ? "" : " ", names, space/bcount,
648 (space/bcount)*100/blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649 return (struct stats) { names, space, bcount};
650}
651#endif /* DX_DEBUG */
652
653/*
654 * Probe for a directory leaf block to search.
655 *
656 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
657 * error in the directory index, and the caller should fall back to
658 * searching the directory normally. The callers of dx_probe **MUST**
659 * check for this error code, and make sure it never gets reflected
660 * back to userspace.
661 */
662static struct dx_frame *
Theodore Ts'of702ba02008-09-22 15:21:01 -0400663dx_probe(const struct qstr *d_name, struct inode *dir,
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400664 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700665{
666 unsigned count, indirect;
667 struct dx_entry *at, *entries, *p, *q, *m;
668 struct dx_root *root;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700669 struct dx_frame *frame = frame_in;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400670 struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671 u32 hash;
672
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400673 frame->bh = ext4_read_dirblock(dir, 0, INDEX);
674 if (IS_ERR(frame->bh))
675 return (struct dx_frame *) frame->bh;
676
677 root = (struct dx_root *) frame->bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678 if (root->info.hash_version != DX_HASH_TEA &&
679 root->info.hash_version != DX_HASH_HALF_MD4 &&
680 root->info.hash_version != DX_HASH_LEGACY) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500681 ext4_warning(dir->i_sb, "Unrecognised inode hash code %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700682 root->info.hash_version);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700683 goto fail;
684 }
685 hinfo->hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400686 if (hinfo->hash_version <= DX_HASH_TEA)
687 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700688 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400689 if (d_name)
690 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 hash = hinfo->hash;
692
693 if (root->info.unused_flags & 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500694 ext4_warning(dir->i_sb, "Unimplemented inode hash flags: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700695 root->info.unused_flags);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696 goto fail;
697 }
698
699 if ((indirect = root->info.indirect_levels) > 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500700 ext4_warning(dir->i_sb, "Unimplemented inode hash depth: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700701 root->info.indirect_levels);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 goto fail;
703 }
704
705 entries = (struct dx_entry *) (((char *)&root->info) +
706 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700707
708 if (dx_get_limit(entries) != dx_root_limit(dir,
709 root->info.info_length)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500710 ext4_warning(dir->i_sb, "dx entry: limit != root limit");
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700711 goto fail;
712 }
713
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400714 dxtrace(printk("Look up %x", hash));
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400715 while (1) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700716 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700717 if (!count || count > dx_get_limit(entries)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500718 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700719 "dx entry: no count or count > limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400720 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700721 }
722
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700723 p = entries + 1;
724 q = entries + count - 1;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400725 while (p <= q) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700726 m = p + (q - p)/2;
727 dxtrace(printk("."));
728 if (dx_get_hash(m) > hash)
729 q = m - 1;
730 else
731 p = m + 1;
732 }
733
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400734 if (0) { // linear search cross check
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735 unsigned n = count - 1;
736 at = entries;
737 while (n--)
738 {
739 dxtrace(printk(","));
740 if (dx_get_hash(++at) > hash)
741 {
742 at--;
743 break;
744 }
745 }
746 assert (at == p - 1);
747 }
748
749 at = p - 1;
750 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700751 frame->entries = entries;
752 frame->at = at;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400753 if (!indirect--)
754 return frame;
755 frame++;
756 frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
757 if (IS_ERR(frame->bh)) {
758 ret_err = (struct dx_frame *) frame->bh;
759 frame->bh = NULL;
760 goto fail;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400761 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400762 entries = ((struct dx_node *) frame->bh->b_data)->entries;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400763
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700764 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500765 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700766 "dx entry: limit != node limit");
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400767 goto fail;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700768 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400770fail:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771 while (frame >= frame_in) {
772 brelse(frame->bh);
773 frame--;
774 }
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400775 if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
Eric Sandeen12062dd2010-02-15 14:19:27 -0500776 ext4_warning(dir->i_sb,
Zheng Liu9ee49302012-02-20 23:09:36 -0500777 "Corrupt dir inode %lu, running e2fsck is "
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700778 "recommended.", dir->i_ino);
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400779 return ret_err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700780}
781
782static void dx_release (struct dx_frame *frames)
783{
784 if (frames[0].bh == NULL)
785 return;
786
787 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
788 brelse(frames[1].bh);
789 brelse(frames[0].bh);
790}
791
792/*
793 * This function increments the frame pointer to search the next leaf
794 * block, and reads in the necessary intervening nodes if the search
795 * should be necessary. Whether or not the search is necessary is
796 * controlled by the hash parameter. If the hash value is even, then
797 * the search is only continued if the next block starts with that
798 * hash value. This is used if we are searching for a specific file.
799 *
800 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
801 *
802 * This function returns 1 if the caller should continue to search,
803 * or 0 if it should not. If there is an error reading one of the
804 * index blocks, it will a negative error code.
805 *
806 * If start_hash is non-null, it will be filled in with the starting
807 * hash of the next page.
808 */
Mingming Cao617ba132006-10-11 01:20:53 -0700809static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700810 struct dx_frame *frame,
811 struct dx_frame *frames,
812 __u32 *start_hash)
813{
814 struct dx_frame *p;
815 struct buffer_head *bh;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500816 int num_frames = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817 __u32 bhash;
818
819 p = frame;
820 /*
821 * Find the next leaf page by incrementing the frame pointer.
822 * If we run out of entries in the interior node, loop around and
823 * increment pointer in the parent node. When we break out of
824 * this loop, num_frames indicates the number of interior
825 * nodes need to be read.
826 */
827 while (1) {
828 if (++(p->at) < p->entries + dx_get_count(p->entries))
829 break;
830 if (p == frames)
831 return 0;
832 num_frames++;
833 p--;
834 }
835
836 /*
837 * If the hash is 1, then continue only if the next page has a
838 * continuation hash of any value. This is used for readdir
839 * handling. Otherwise, check to see if the hash matches the
840 * desired contiuation hash. If it doesn't, return since
841 * there's no point to read in the successive index pages.
842 */
843 bhash = dx_get_hash(p->at);
844 if (start_hash)
845 *start_hash = bhash;
846 if ((hash & 1) == 0) {
847 if ((bhash & ~1) != hash)
848 return 0;
849 }
850 /*
851 * If the hash is HASH_NB_ALWAYS, we always go to the next
852 * block so no check is necessary
853 */
854 while (num_frames--) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500855 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
856 if (IS_ERR(bh))
857 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 p++;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400859 brelse(p->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860 p->bh = bh;
861 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
862 }
863 return 1;
864}
865
866
867/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 * This function fills a red-black tree with information from a
869 * directory block. It returns the number directory entries loaded
870 * into the tree. If there is an error it is returned in err.
871 */
872static int htree_dirblock_to_tree(struct file *dir_file,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500873 struct inode *dir, ext4_lblk_t block,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700874 struct dx_hash_info *hinfo,
875 __u32 start_hash, __u32 start_minor_hash)
876{
877 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -0700878 struct ext4_dir_entry_2 *de, *top;
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400879 int err = 0, count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500881 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
882 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500883 bh = ext4_read_dirblock(dir, block, DIRENT);
884 if (IS_ERR(bh))
885 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400886
Mingming Cao617ba132006-10-11 01:20:53 -0700887 de = (struct ext4_dir_entry_2 *) bh->b_data;
888 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700890 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500891 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500892 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500893 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500894 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
895 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400896 /* silently ignore the rest of the block */
897 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800898 }
Mingming Cao617ba132006-10-11 01:20:53 -0700899 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900 if ((hinfo->hash < start_hash) ||
901 ((hinfo->hash == start_hash) &&
902 (hinfo->minor_hash < start_minor_hash)))
903 continue;
904 if (de->inode == 0)
905 continue;
Mingming Cao617ba132006-10-11 01:20:53 -0700906 if ((err = ext4_htree_store_dirent(dir_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700907 hinfo->hash, hinfo->minor_hash, de)) != 0) {
908 brelse(bh);
909 return err;
910 }
911 count++;
912 }
913 brelse(bh);
914 return count;
915}
916
917
918/*
919 * This function fills a red-black tree with information from a
920 * directory. We start scanning the directory in hash order, starting
921 * at start_hash and start_minor_hash.
922 *
923 * This function returns the number of entries inserted into the tree,
924 * or a negative error code.
925 */
Mingming Cao617ba132006-10-11 01:20:53 -0700926int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927 __u32 start_minor_hash, __u32 *next_hash)
928{
929 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700930 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700931 struct dx_frame frames[2], *frame;
932 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500933 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700934 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500935 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936 __u32 hashval;
937
Theodore Ts'o60e66792010-05-17 07:00:00 -0400938 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400939 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500940 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400941 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700942 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400943 if (hinfo.hash_version <= DX_HASH_TEA)
944 hinfo.hash_version +=
945 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700946 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400947 if (ext4_has_inline_data(dir)) {
948 int has_inline_data = 1;
949 count = htree_inlinedir_to_tree(dir_file, dir, 0,
950 &hinfo, start_hash,
951 start_minor_hash,
952 &has_inline_data);
953 if (has_inline_data) {
954 *next_hash = ~0;
955 return count;
956 }
957 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
959 start_hash, start_minor_hash);
960 *next_hash = ~0;
961 return count;
962 }
963 hinfo.hash = start_hash;
964 hinfo.minor_hash = 0;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400965 frame = dx_probe(NULL, dir, &hinfo, frames);
966 if (IS_ERR(frame))
967 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968
969 /* Add '.' and '..' from the htree header */
970 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700971 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
972 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973 goto errout;
974 count++;
975 }
976 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700977 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500978 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Mingming Cao617ba132006-10-11 01:20:53 -0700979 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700980 goto errout;
981 count++;
982 }
983
984 while (1) {
985 block = dx_get_block(frame->at);
986 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
987 start_hash, start_minor_hash);
988 if (ret < 0) {
989 err = ret;
990 goto errout;
991 }
992 count += ret;
993 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -0700994 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995 frame, frames, &hashval);
996 *next_hash = hashval;
997 if (ret < 0) {
998 err = ret;
999 goto errout;
1000 }
1001 /*
1002 * Stop if: (a) there are no more entries, or
1003 * (b) we have inserted at least one entry and the
1004 * next hash value is not a continuation
1005 */
1006 if ((ret == 0) ||
1007 (count && ((hashval & 1) == 0)))
1008 break;
1009 }
1010 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001011 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1012 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013 return count;
1014errout:
1015 dx_release(frames);
1016 return (err);
1017}
1018
Tao Ma7335cd32012-12-10 14:05:59 -05001019static inline int search_dirblock(struct buffer_head *bh,
1020 struct inode *dir,
1021 const struct qstr *d_name,
1022 unsigned int offset,
1023 struct ext4_dir_entry_2 **res_dir)
1024{
1025 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1026 d_name, offset, res_dir);
1027}
1028
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001029/*
1030 * Directory block splitting, compacting
1031 */
1032
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001033/*
1034 * Create map of hash values, offsets, and sizes, stored at end of block.
1035 * Returns number of entries mapped.
1036 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001037static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1038 struct dx_hash_info *hinfo,
1039 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040{
1041 int count = 0;
1042 char *base = (char *) de;
1043 struct dx_hash_info h = *hinfo;
1044
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001045 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001046 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001047 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 map_tail--;
1049 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001050 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001051 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 count++;
1053 cond_resched();
1054 }
1055 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001056 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 }
1058 return count;
1059}
1060
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001061/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001062static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1063{
Andrew Morton63f57932006-10-11 01:21:24 -07001064 struct dx_map_entry *p, *q, *top = map + count - 1;
1065 int more;
1066 /* Combsort until bubble sort doesn't suck */
1067 while (count > 2) {
1068 count = count*10/13;
1069 if (count - 9 < 2) /* 9, 10 -> 11 */
1070 count = 11;
1071 for (p = top, q = p - count; q >= map; p--, q--)
1072 if (p->hash < q->hash)
1073 swap(*p, *q);
1074 }
1075 /* Garden variety bubble sort */
1076 do {
1077 more = 0;
1078 q = top;
1079 while (q-- > map) {
1080 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001081 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001082 swap(*(q+1), *q);
1083 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 }
1085 } while(more);
1086}
1087
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001088static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001089{
1090 struct dx_entry *entries = frame->entries;
1091 struct dx_entry *old = frame->at, *new = old + 1;
1092 int count = dx_get_count(entries);
1093
1094 assert(count < dx_get_limit(entries));
1095 assert(old < entries + count);
1096 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1097 dx_set_hash(new, hash);
1098 dx_set_block(new, block);
1099 dx_set_count(entries, count + 1);
1100}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001101
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001102/*
Mingming Cao617ba132006-10-11 01:20:53 -07001103 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001104 *
Mingming Cao617ba132006-10-11 01:20:53 -07001105 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106 * `de != NULL' is guaranteed by caller.
1107 */
Mingming Cao617ba132006-10-11 01:20:53 -07001108static inline int ext4_match (int len, const char * const name,
1109 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110{
1111 if (len != de->name_len)
1112 return 0;
1113 if (!de->inode)
1114 return 0;
1115 return !memcmp(name, de->name, len);
1116}
1117
1118/*
1119 * Returns 0 if not found, -1 on failure, and 1 on success
1120 */
Tao Ma7335cd32012-12-10 14:05:59 -05001121int search_dir(struct buffer_head *bh,
1122 char *search_buf,
1123 int buf_size,
1124 struct inode *dir,
1125 const struct qstr *d_name,
1126 unsigned int offset,
1127 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128{
Mingming Cao617ba132006-10-11 01:20:53 -07001129 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130 char * dlimit;
1131 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001132 const char *name = d_name->name;
1133 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001134
Tao Ma7335cd32012-12-10 14:05:59 -05001135 de = (struct ext4_dir_entry_2 *)search_buf;
1136 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137 while ((char *) de < dlimit) {
1138 /* this code is executed quadratically often */
1139 /* do minimal checking `by hand' */
1140
1141 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001142 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001144 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1145 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001146 return -1;
1147 *res_dir = de;
1148 return 1;
1149 }
1150 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001151 de_len = ext4_rec_len_from_disk(de->rec_len,
1152 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001153 if (de_len <= 0)
1154 return -1;
1155 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001156 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001157 }
1158 return 0;
1159}
1160
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001161static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1162 struct ext4_dir_entry *de)
1163{
1164 struct super_block *sb = dir->i_sb;
1165
1166 if (!is_dx(dir))
1167 return 0;
1168 if (block == 0)
1169 return 1;
1170 if (de->inode == 0 &&
1171 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1172 sb->s_blocksize)
1173 return 1;
1174 return 0;
1175}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001176
1177/*
Mingming Cao617ba132006-10-11 01:20:53 -07001178 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001179 *
1180 * finds an entry in the specified directory with the wanted name. It
1181 * returns the cache buffer in which the entry was found, and the entry
1182 * itself (as a parameter - res_dir). It does NOT read the inode of the
1183 * entry - you'll have to do that yourself if you want to.
1184 *
1185 * The returned buffer_head has ->b_count elevated. The caller is expected
1186 * to brelse() it when appropriate.
1187 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001188static struct buffer_head * ext4_find_entry (struct inode *dir,
1189 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001190 struct ext4_dir_entry_2 **res_dir,
1191 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001192{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001193 struct super_block *sb;
1194 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1195 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001196 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001197 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 int ra_max = 0; /* Number of bh's in the readahead
1199 buffer, bh_use[] */
1200 int ra_ptr = 0; /* Current index into readahead
1201 buffer */
1202 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001203 ext4_lblk_t nblocks;
Theodore Ts'o10560082014-08-29 20:51:32 -04001204 int i, namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001205
1206 *res_dir = NULL;
1207 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001208 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001209 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001211
1212 if (ext4_has_inline_data(dir)) {
1213 int has_inline_data = 1;
1214 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1215 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001216 if (has_inline_data) {
1217 if (inlined)
1218 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001219 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001220 }
Tao Mae8e948e2012-12-10 14:06:00 -05001221 }
1222
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001223 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001224 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001225 /*
1226 * "." or ".." will only be in the first block
1227 * NFS may look up ".."; "." should be handled by the VFS
1228 */
1229 block = start = 0;
1230 nblocks = 1;
1231 goto restart;
1232 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233 if (is_dx(dir)) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001234 bh = ext4_dx_find_entry(dir, d_name, res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 /*
1236 * On success, or if the error was file not found,
1237 * return. Otherwise, fall back to doing a search the
1238 * old fashioned way.
1239 */
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001240 if (!IS_ERR(bh) || PTR_ERR(bh) != ERR_BAD_DX_DIR)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001242 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1243 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001244 }
Mingming Cao617ba132006-10-11 01:20:53 -07001245 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1246 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 if (start >= nblocks)
1248 start = 0;
1249 block = start;
1250restart:
1251 do {
1252 /*
1253 * We deal with the read-ahead logic here.
1254 */
1255 if (ra_ptr >= ra_max) {
1256 /* Refill the readahead buffer */
1257 ra_ptr = 0;
1258 b = block;
1259 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1260 /*
1261 * Terminate if we reach the end of the
1262 * directory and must wrap, or if our
1263 * search has finished at this block.
1264 */
1265 if (b >= nblocks || (num && block == start)) {
1266 bh_use[ra_max] = NULL;
1267 break;
1268 }
1269 num++;
Theodore Ts'o10560082014-08-29 20:51:32 -04001270 bh = ext4_getblk(NULL, dir, b++, 0);
1271 if (unlikely(IS_ERR(bh))) {
Theodore Ts'o36de9282014-08-23 17:47:19 -04001272 if (ra_max == 0)
Theodore Ts'o10560082014-08-29 20:51:32 -04001273 return bh;
Theodore Ts'o36de9282014-08-23 17:47:19 -04001274 break;
1275 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001276 bh_use[ra_max] = bh;
1277 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001278 ll_rw_block(READ | REQ_META | REQ_PRIO,
1279 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001280 }
1281 }
1282 if ((bh = bh_use[ra_ptr++]) == NULL)
1283 goto next;
1284 wait_on_buffer(bh);
1285 if (!buffer_uptodate(bh)) {
1286 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001287 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1288 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 brelse(bh);
1290 goto next;
1291 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001292 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001293 !is_dx_internal_node(dir, block,
1294 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001295 !ext4_dirent_csum_verify(dir,
1296 (struct ext4_dir_entry *)bh->b_data)) {
1297 EXT4_ERROR_INODE(dir, "checksumming directory "
1298 "block %lu", (unsigned long)block);
1299 brelse(bh);
1300 goto next;
1301 }
1302 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001303 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001304 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001305 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001306 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001307 ret = bh;
1308 goto cleanup_and_exit;
1309 } else {
1310 brelse(bh);
1311 if (i < 0)
1312 goto cleanup_and_exit;
1313 }
1314 next:
1315 if (++block >= nblocks)
1316 block = 0;
1317 } while (block != start);
1318
1319 /*
1320 * If the directory has grown while we were searching, then
1321 * search the last part of the directory before giving up.
1322 */
1323 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001324 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001325 if (block < nblocks) {
1326 start = 0;
1327 goto restart;
1328 }
1329
1330cleanup_and_exit:
1331 /* Clean up the read-ahead blocks */
1332 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001333 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334 return ret;
1335}
1336
Theodore Ts'of702ba02008-09-22 15:21:01 -04001337static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001338 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001339{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001340 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001341 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001343 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001344 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001345 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001346
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001347 frame = dx_probe(d_name, dir, &hinfo, frames);
1348 if (IS_ERR(frame))
1349 return (struct buffer_head *) frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 do {
1351 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001352 bh = ext4_read_dirblock(dir, block, DIRENT);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001353 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354 goto errout;
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001355
Theodore Ts'o7845c042010-10-27 21:30:08 -04001356 retval = search_dirblock(bh, dir, d_name,
1357 block << EXT4_BLOCK_SIZE_BITS(sb),
1358 res_dir);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001359 if (retval == 1)
1360 goto success;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001361 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001362 if (retval == -1) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001363 bh = ERR_PTR(ERR_BAD_DX_DIR);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001364 goto errout;
1365 }
1366
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001368 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369 frames, NULL);
1370 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001371 ext4_warning(sb,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001372 "error %d reading index page in directory #%lu",
1373 retval, dir->i_ino);
1374 bh = ERR_PTR(retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001375 goto errout;
1376 }
1377 } while (retval == 1);
1378
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001379 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001381 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001382success:
1383 dx_release(frames);
1384 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001385}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386
Al Viro00cd8dd2012-06-10 17:13:09 -04001387static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001389 struct inode *inode;
1390 struct ext4_dir_entry_2 *de;
1391 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392
Mingming Cao617ba132006-10-11 01:20:53 -07001393 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001394 return ERR_PTR(-ENAMETOOLONG);
1395
Tao Ma32f7f222012-12-10 14:06:01 -05001396 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001397 if (IS_ERR(bh))
1398 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001399 inode = NULL;
1400 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001401 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001402 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001403 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001404 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001405 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001406 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001407 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001408 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1409 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001410 return ERR_PTR(-EIO);
1411 }
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001412 inode = ext4_iget_normal(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001413 if (inode == ERR_PTR(-ESTALE)) {
1414 EXT4_ERROR_INODE(dir,
1415 "deleted inode referenced: %u",
1416 ino);
1417 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001418 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001419 }
1420 return d_splice_alias(inode, dentry);
1421}
1422
1423
Mingming Cao617ba132006-10-11 01:20:53 -07001424struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001425{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001426 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001427 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001428 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001429 struct buffer_head *bh;
1430
Tao Ma32f7f222012-12-10 14:06:01 -05001431 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001432 if (IS_ERR(bh))
1433 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 if (!bh)
1435 return ERR_PTR(-ENOENT);
1436 ino = le32_to_cpu(de->inode);
1437 brelse(bh);
1438
Mingming Cao617ba132006-10-11 01:20:53 -07001439 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001440 EXT4_ERROR_INODE(child->d_inode,
1441 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001442 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001443 }
1444
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001445 return d_obtain_alias(ext4_iget_normal(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001446}
1447
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001448/*
1449 * Move count entries from end of map between two memory locations.
1450 * Returns pointer to last entry moved.
1451 */
Mingming Cao617ba132006-10-11 01:20:53 -07001452static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001453dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1454 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001455{
1456 unsigned rec_len = 0;
1457
1458 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001459 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001460 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001461 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001462 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001463 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001464 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001465 de->inode = 0;
1466 map++;
1467 to += rec_len;
1468 }
Mingming Cao617ba132006-10-11 01:20:53 -07001469 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001470}
1471
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001472/*
1473 * Compact each dir entry in the range to the minimal rec_len.
1474 * Returns pointer to last entry in range.
1475 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001476static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001477{
Mingming Cao617ba132006-10-11 01:20:53 -07001478 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001479 unsigned rec_len = 0;
1480
1481 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001482 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001483 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001484 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001485 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001486 if (de > to)
1487 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001488 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001489 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001490 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001491 }
1492 de = next;
1493 }
1494 return prev;
1495}
1496
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001497/*
1498 * Split a full leaf block to make room for a new dir entry.
1499 * Allocate a new block, and move entries so that they are approx. equally full.
1500 * Returns pointer to de in block into which the new entry will be inserted.
1501 */
Mingming Cao617ba132006-10-11 01:20:53 -07001502static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001503 struct buffer_head **bh,struct dx_frame *frame,
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001504 struct dx_hash_info *hinfo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001505{
1506 unsigned blocksize = dir->i_sb->s_blocksize;
1507 unsigned count, continued;
1508 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001509 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001510 u32 hash2;
1511 struct dx_map_entry *map;
1512 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001513 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001514 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001515 struct ext4_dir_entry_tail *t;
1516 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001517 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001519 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001520 csum_size = sizeof(struct ext4_dir_entry_tail);
1521
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001522 bh2 = ext4_append(handle, dir, &newblock);
1523 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524 brelse(*bh);
1525 *bh = NULL;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001526 return (struct ext4_dir_entry_2 *) bh2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001527 }
1528
1529 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001530 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001531 if (err)
1532 goto journal_error;
1533
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001534 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001535 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001536 if (err)
1537 goto journal_error;
1538
1539 data2 = bh2->b_data;
1540
1541 /* create map in the end of data2 block */
1542 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001543 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001544 blocksize, hinfo, map);
1545 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001546 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001547 /* Split the existing block in the middle, size-wise */
1548 size = 0;
1549 move = 0;
1550 for (i = count-1; i >= 0; i--) {
1551 /* is more than half of this entry in 2nd half of the block? */
1552 if (size + map[i].size/2 > blocksize/2)
1553 break;
1554 size += map[i].size;
1555 move++;
1556 }
1557 /* map index at which we will split */
1558 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 hash2 = map[split].hash;
1560 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001561 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1562 (unsigned long)dx_get_block(frame->at),
1563 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001564
1565 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001566 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001567 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001568 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1569 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001570 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001571 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1572 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001573 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001574 if (csum_size) {
1575 t = EXT4_DIRENT_TAIL(data2, blocksize);
1576 initialize_dirent_tail(t, blocksize);
1577
1578 t = EXT4_DIRENT_TAIL(data1, blocksize);
1579 initialize_dirent_tail(t, blocksize);
1580 }
1581
Mingming Cao617ba132006-10-11 01:20:53 -07001582 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1583 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584
1585 /* Which block gets the new entry? */
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001586 if (hinfo->hash >= hash2) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001587 swap(*bh, bh2);
1588 de = de2;
1589 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001590 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001591 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001592 if (err)
1593 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001594 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001595 if (err)
1596 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001597 brelse(bh2);
1598 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001599 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001600
1601journal_error:
1602 brelse(*bh);
1603 brelse(bh2);
1604 *bh = NULL;
1605 ext4_std_error(dir->i_sb, err);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001606 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001607}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001608
Tao Ma978fef92012-12-10 14:05:58 -05001609int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1610 struct buffer_head *bh,
1611 void *buf, int buf_size,
1612 const char *name, int namelen,
1613 struct ext4_dir_entry_2 **dest_de)
1614{
1615 struct ext4_dir_entry_2 *de;
1616 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1617 int nlen, rlen;
1618 unsigned int offset = 0;
1619 char *top;
1620
1621 de = (struct ext4_dir_entry_2 *)buf;
1622 top = buf + buf_size - reclen;
1623 while ((char *) de <= top) {
1624 if (ext4_check_dir_entry(dir, NULL, de, bh,
1625 buf, buf_size, offset))
1626 return -EIO;
1627 if (ext4_match(namelen, name, de))
1628 return -EEXIST;
1629 nlen = EXT4_DIR_REC_LEN(de->name_len);
1630 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1631 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1632 break;
1633 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1634 offset += rlen;
1635 }
1636 if ((char *) de > top)
1637 return -ENOSPC;
1638
1639 *dest_de = de;
1640 return 0;
1641}
1642
1643void ext4_insert_dentry(struct inode *inode,
1644 struct ext4_dir_entry_2 *de,
1645 int buf_size,
1646 const char *name, int namelen)
1647{
1648
1649 int nlen, rlen;
1650
1651 nlen = EXT4_DIR_REC_LEN(de->name_len);
1652 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1653 if (de->inode) {
1654 struct ext4_dir_entry_2 *de1 =
1655 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1656 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1657 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1658 de = de1;
1659 }
1660 de->file_type = EXT4_FT_UNKNOWN;
1661 de->inode = cpu_to_le32(inode->i_ino);
1662 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1663 de->name_len = namelen;
1664 memcpy(de->name, name, namelen);
1665}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001666/*
1667 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1668 * it points to a directory entry which is guaranteed to be large
1669 * enough for new directory entry. If de is NULL, then
1670 * add_dirent_to_buf will attempt search the directory block for
1671 * space. It will return -ENOSPC if no space is available, and -EIO
1672 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001673 */
1674static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001675 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001676 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001677{
1678 struct inode *dir = dentry->d_parent->d_inode;
1679 const char *name = dentry->d_name.name;
1680 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001681 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001682 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001683 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001684
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001685 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001686 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001687
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001688 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001689 err = ext4_find_dest_de(dir, inode,
1690 bh, bh->b_data, blocksize - csum_size,
1691 name, namelen, &de);
1692 if (err)
1693 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001694 }
1695 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001696 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001697 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07001698 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001699 return err;
1700 }
1701
1702 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001703 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1704
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001705 /*
1706 * XXX shouldn't update any times until successful
1707 * completion of syscall, but too many callers depend
1708 * on this.
1709 *
1710 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001711 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001712 * recovery deletes the inode, so the worst that can
1713 * happen is that the times are slightly out of date
1714 * and/or different from the directory change time.
1715 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001716 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001717 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001718 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001719 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001720 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001721 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001722 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001723 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001724 return 0;
1725}
1726
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001727/*
1728 * This converts a one block unindexed directory to a 3 block indexed
1729 * directory, and adds the dentry to the indexed directory.
1730 */
1731static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1732 struct inode *inode, struct buffer_head *bh)
1733{
1734 struct inode *dir = dentry->d_parent->d_inode;
1735 const char *name = dentry->d_name.name;
1736 int namelen = dentry->d_name.len;
1737 struct buffer_head *bh2;
1738 struct dx_root *root;
1739 struct dx_frame frames[2], *frame;
1740 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001741 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001742 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001743 char *data1, *top;
1744 unsigned len;
1745 int retval;
1746 unsigned blocksize;
1747 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001748 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001749 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001750 int csum_size = 0;
1751
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001752 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001753 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001754
1755 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001756 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
liang xie5d601252014-05-12 22:06:43 -04001757 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001758 retval = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001759 if (retval) {
Mingming Cao617ba132006-10-11 01:20:53 -07001760 ext4_std_error(dir->i_sb, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001761 brelse(bh);
1762 return retval;
1763 }
1764 root = (struct dx_root *) bh->b_data;
1765
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001766 /* The 0th block becomes the root, move the dirents out */
1767 fde = &root->dotdot;
1768 de = (struct ext4_dir_entry_2 *)((char *)fde +
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001769 ext4_rec_len_from_disk(fde->rec_len, blocksize));
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001770 if ((char *) de >= (((char *) root) + blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001771 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001772 brelse(bh);
1773 return -EIO;
1774 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001775 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001776
1777 /* Allocate new block for the 0th block's dirents */
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001778 bh2 = ext4_append(handle, dir, &block);
1779 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001780 brelse(bh);
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001781 return PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001782 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001783 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001784 data1 = bh2->b_data;
1785
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001786 memcpy (data1, de, len);
Mingming Cao617ba132006-10-11 01:20:53 -07001787 de = (struct ext4_dir_entry_2 *) data1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001788 top = data1 + len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001789 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001790 de = de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001791 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1792 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001793 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001794
1795 if (csum_size) {
1796 t = EXT4_DIRENT_TAIL(data1, blocksize);
1797 initialize_dirent_tail(t, blocksize);
1798 }
1799
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001800 /* Initialize the root; the dot dirents already exist */
Mingming Cao617ba132006-10-11 01:20:53 -07001801 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001802 de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1803 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001804 memset (&root->info, 0, sizeof(root->info));
1805 root->info.info_length = sizeof(root->info);
Mingming Cao617ba132006-10-11 01:20:53 -07001806 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001807 entries = root->entries;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001808 dx_set_block(entries, 1);
1809 dx_set_count(entries, 1);
1810 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811
1812 /* Initialize as for dx_probe */
1813 hinfo.hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04001814 if (hinfo.hash_version <= DX_HASH_TEA)
1815 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -07001816 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1817 ext4fs_dirhash(name, namelen, &hinfo);
Jan Kara6050d472014-10-30 10:53:17 -04001818 memset(frames, 0, sizeof(frames));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001819 frame = frames;
1820 frame->entries = entries;
1821 frame->at = entries;
1822 frame->bh = bh;
1823 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001824
Jan Kara6050d472014-10-30 10:53:17 -04001825 retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
1826 if (retval)
1827 goto out_frames;
1828 retval = ext4_handle_dirty_dirent_node(handle, dir, bh);
1829 if (retval)
1830 goto out_frames;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001831
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001832 de = do_split(handle,dir, &bh, frame, &hinfo);
1833 if (IS_ERR(de)) {
Jan Kara6050d472014-10-30 10:53:17 -04001834 retval = PTR_ERR(de);
1835 goto out_frames;
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001836 }
1837 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001838
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001839 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1840 brelse(bh);
1841 return retval;
Jan Kara6050d472014-10-30 10:53:17 -04001842out_frames:
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);
1849 dx_release(frames);
1850 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001851}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001852
1853/*
Mingming Cao617ba132006-10-11 01:20:53 -07001854 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001855 *
1856 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001857 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001858 *
1859 * NOTE!! The inode part of 'de' is left at 0 - which means you
1860 * may not sleep between calling this and putting something into
1861 * the entry, as someone else might have used it while you slept.
1862 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001863static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1864 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001865{
1866 struct inode *dir = dentry->d_parent->d_inode;
Lukas Czernere12fb972015-04-03 10:46:58 -04001867 struct buffer_head *bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001868 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001869 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001870 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001871 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001872 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001873 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001874 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001875 int csum_size = 0;
1876
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001877 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001878 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001879
1880 sb = dir->i_sb;
1881 blocksize = sb->s_blocksize;
1882 if (!dentry->d_name.len)
1883 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001884
1885 if (ext4_has_inline_data(dir)) {
1886 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1887 if (retval < 0)
1888 return retval;
1889 if (retval == 1) {
1890 retval = 0;
Lukas Czernere12fb972015-04-03 10:46:58 -04001891 goto out;
Tao Ma3c47d542012-12-10 14:05:59 -05001892 }
1893 }
1894
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001895 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001896 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001897 if (!retval || (retval != ERR_BAD_DX_DIR))
Lukas Czernere12fb972015-04-03 10:46:58 -04001898 goto out;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001899 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001900 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001901 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001903 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001904 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001905 bh = ext4_read_dirblock(dir, block, DIRENT);
1906 if (IS_ERR(bh))
1907 return PTR_ERR(bh);
1908
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001909 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Lukas Czernere12fb972015-04-03 10:46:58 -04001910 if (retval != -ENOSPC)
1911 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001912
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001913 if (blocks == 1 && !dx_fallback &&
Lukas Czernere12fb972015-04-03 10:46:58 -04001914 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX)) {
1915 retval = make_indexed_dir(handle, dentry, inode, bh);
1916 bh = NULL; /* make_indexed_dir releases bh */
1917 goto out;
1918 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001919 brelse(bh);
1920 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001921 bh = ext4_append(handle, dir, &block);
1922 if (IS_ERR(bh))
1923 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001924 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001925 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001926 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1927
1928 if (csum_size) {
1929 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1930 initialize_dirent_tail(t, blocksize);
1931 }
1932
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001933 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
Lukas Czernere12fb972015-04-03 10:46:58 -04001934out:
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001935 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001936 if (retval == 0)
1937 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001938 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001939}
1940
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001941/*
1942 * Returns 0 for success, or a negative error value
1943 */
Mingming Cao617ba132006-10-11 01:20:53 -07001944static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945 struct inode *inode)
1946{
1947 struct dx_frame frames[2], *frame;
1948 struct dx_entry *entries, *at;
1949 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001950 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001951 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001952 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001953 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001954 int err;
1955
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001956 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames);
1957 if (IS_ERR(frame))
1958 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001959 entries = frame->entries;
1960 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001961 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1962 if (IS_ERR(bh)) {
1963 err = PTR_ERR(bh);
1964 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001965 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001966 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967
1968 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001969 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 if (err)
1971 goto journal_error;
1972
1973 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001974 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001975 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001976
1977 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001978 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979 dx_get_count(entries), dx_get_limit(entries)));
1980 /* Need to split index? */
1981 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001982 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 unsigned icount = dx_get_count(entries);
1984 int levels = frame - frames;
1985 struct dx_entry *entries2;
1986 struct dx_node *node2;
1987 struct buffer_head *bh2;
1988
1989 if (levels && (dx_get_count(frames->entries) ==
1990 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001991 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001992 err = -ENOSPC;
1993 goto cleanup;
1994 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001995 bh2 = ext4_append(handle, dir, &newblock);
1996 if (IS_ERR(bh2)) {
1997 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001998 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001999 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002000 node2 = (struct dx_node *)(bh2->b_data);
2001 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04002002 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002003 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2004 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002005 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002006 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 if (err)
2008 goto journal_error;
2009 if (levels) {
2010 unsigned icount1 = icount/2, icount2 = icount - icount1;
2011 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002012 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2013 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002014
2015 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002016 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002017 frames[0].bh);
2018 if (err)
2019 goto journal_error;
2020
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002021 memcpy((char *) entries2, (char *) (entries + icount1),
2022 icount2 * sizeof(struct dx_entry));
2023 dx_set_count(entries, icount1);
2024 dx_set_count(entries2, icount2);
2025 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002026
2027 /* Which index block gets the new entry? */
2028 if (at - entries >= icount1) {
2029 frame->at = at = at - entries - icount1 + entries2;
2030 frame->entries = entries = entries2;
2031 swap(frame->bh, bh2);
2032 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002033 dx_insert_block(frames + 0, hash2, newblock);
2034 dxtrace(dx_show_index("node", frames[1].entries));
2035 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002036 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002037 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002038 if (err)
2039 goto journal_error;
2040 brelse (bh2);
2041 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002042 dxtrace(printk(KERN_DEBUG
2043 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002044 memcpy((char *) entries2, (char *) entries,
2045 icount * sizeof(struct dx_entry));
2046 dx_set_limit(entries2, dx_node_limit(dir));
2047
2048 /* Set up root */
2049 dx_set_count(entries, 1);
2050 dx_set_block(entries + 0, newblock);
2051 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2052
2053 /* Add new access path frame */
2054 frame = frames + 1;
2055 frame->at = at = at - entries + entries2;
2056 frame->entries = entries = entries2;
2057 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002058 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002059 frame->bh);
2060 if (err)
2061 goto journal_error;
2062 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002063 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002064 if (err) {
2065 ext4_std_error(inode->i_sb, err);
2066 goto cleanup;
2067 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002068 }
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002069 de = do_split(handle, dir, &bh, frame, &hinfo);
2070 if (IS_ERR(de)) {
2071 err = PTR_ERR(de);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002072 goto cleanup;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002073 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002074 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002075 goto cleanup;
2076
2077journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002078 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002079cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002080 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002081 dx_release(frames);
2082 return err;
2083}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002084
2085/*
Tao Ma05019a92012-12-10 14:06:00 -05002086 * ext4_generic_delete_entry deletes a directory entry by merging it
2087 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002088 */
Tao Ma05019a92012-12-10 14:06:00 -05002089int ext4_generic_delete_entry(handle_t *handle,
2090 struct inode *dir,
2091 struct ext4_dir_entry_2 *de_del,
2092 struct buffer_head *bh,
2093 void *entry_buf,
2094 int buf_size,
2095 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002096{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002097 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002098 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002099 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002100
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002101 i = 0;
2102 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002103 de = (struct ext4_dir_entry_2 *)entry_buf;
2104 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002105 if (ext4_check_dir_entry(dir, NULL, de, bh,
2106 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002107 return -EIO;
2108 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002109 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002110 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002111 ext4_rec_len_from_disk(pde->rec_len,
2112 blocksize) +
2113 ext4_rec_len_from_disk(de->rec_len,
2114 blocksize),
2115 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002116 else
2117 de->inode = 0;
2118 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002119 return 0;
2120 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002121 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002122 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002123 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002124 }
2125 return -ENOENT;
2126}
2127
Tao Ma05019a92012-12-10 14:06:00 -05002128static int ext4_delete_entry(handle_t *handle,
2129 struct inode *dir,
2130 struct ext4_dir_entry_2 *de_del,
2131 struct buffer_head *bh)
2132{
2133 int err, csum_size = 0;
2134
Tao Ma9f40fe52012-12-10 14:06:00 -05002135 if (ext4_has_inline_data(dir)) {
2136 int has_inline_data = 1;
2137 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2138 &has_inline_data);
2139 if (has_inline_data)
2140 return err;
2141 }
2142
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002143 if (ext4_has_metadata_csum(dir->i_sb))
Tao Ma05019a92012-12-10 14:06:00 -05002144 csum_size = sizeof(struct ext4_dir_entry_tail);
2145
2146 BUFFER_TRACE(bh, "get_write_access");
2147 err = ext4_journal_get_write_access(handle, bh);
2148 if (unlikely(err))
2149 goto out;
2150
2151 err = ext4_generic_delete_entry(handle, dir, de_del,
2152 bh, bh->b_data,
2153 dir->i_sb->s_blocksize, csum_size);
2154 if (err)
2155 goto out;
2156
2157 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2158 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2159 if (unlikely(err))
2160 goto out;
2161
2162 return 0;
2163out:
2164 if (err != -ENOENT)
2165 ext4_std_error(dir->i_sb, err);
2166 return err;
2167}
2168
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002169/*
2170 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2171 * since this indicates that nlinks count was previously 1.
2172 */
2173static void ext4_inc_count(handle_t *handle, struct inode *inode)
2174{
2175 inc_nlink(inode);
2176 if (is_dx(inode) && inode->i_nlink > 1) {
2177 /* limit is 16-bit i_links_count */
2178 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002179 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002180 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2181 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2182 }
2183 }
2184}
2185
2186/*
2187 * If a directory had nlink == 1, then we should let it be 1. This indicates
2188 * directory has >EXT4_LINK_MAX subdirs.
2189 */
2190static void ext4_dec_count(handle_t *handle, struct inode *inode)
2191{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002192 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2193 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002194}
2195
2196
Mingming Cao617ba132006-10-11 01:20:53 -07002197static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002198 struct dentry *dentry, struct inode *inode)
2199{
Mingming Cao617ba132006-10-11 01:20:53 -07002200 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002201 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002202 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002203 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002204 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002205 return 0;
2206 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002207 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002208 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002209 iput(inode);
2210 return err;
2211}
2212
2213/*
2214 * By the time this is called, we already have created
2215 * the directory cache entry for the new file, but it
2216 * is so far negative - it has no inode.
2217 *
2218 * If the create succeeds, we fill in the inode information
2219 * with d_instantiate().
2220 */
Al Viro4acdaf22011-07-26 01:42:34 -04002221static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002222 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002223{
2224 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002225 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002226 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002227
Christoph Hellwig871a2932010-03-03 09:05:07 -05002228 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002229
Theodore Ts'o11395752013-02-09 16:27:09 -05002230 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002231 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002232retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002233 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2234 NULL, EXT4_HT_DIR, credits);
2235 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002236 err = PTR_ERR(inode);
2237 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002238 inode->i_op = &ext4_file_inode_operations;
Ross Zwisler923ae0f2015-02-16 15:59:38 -08002239 if (test_opt(inode->i_sb, DAX))
2240 inode->i_fop = &ext4_dax_file_operations;
2241 else
2242 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002243 ext4_set_aops(inode);
2244 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002245 if (!err && IS_DIRSYNC(dir))
2246 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002248 if (handle)
2249 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002250 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002251 goto retry;
2252 return err;
2253}
2254
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002255static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002256 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257{
2258 handle_t *handle;
2259 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002260 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261
2262 if (!new_valid_dev(rdev))
2263 return -EINVAL;
2264
Christoph Hellwig871a2932010-03-03 09:05:07 -05002265 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002266
Theodore Ts'o11395752013-02-09 16:27:09 -05002267 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002268 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002269retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002270 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2271 NULL, EXT4_HT_DIR, credits);
2272 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002273 err = PTR_ERR(inode);
2274 if (!IS_ERR(inode)) {
2275 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002276 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002277 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002278 if (!err && IS_DIRSYNC(dir))
2279 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002280 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002281 if (handle)
2282 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002283 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002284 goto retry;
2285 return err;
2286}
2287
Al Viroaf51a2a2013-06-29 13:23:08 +04002288static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2289{
2290 handle_t *handle;
2291 struct inode *inode;
2292 int err, retries = 0;
2293
2294 dquot_initialize(dir);
2295
2296retry:
2297 inode = ext4_new_inode_start_handle(dir, mode,
2298 NULL, 0, NULL,
2299 EXT4_HT_DIR,
2300 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2301 4 + EXT4_XATTR_TRANS_BLOCKS);
2302 handle = ext4_journal_current_handle();
2303 err = PTR_ERR(inode);
2304 if (!IS_ERR(inode)) {
2305 inode->i_op = &ext4_file_inode_operations;
Ross Zwisler923ae0f2015-02-16 15:59:38 -08002306 if (test_opt(inode->i_sb, DAX))
2307 inode->i_fop = &ext4_dax_file_operations;
2308 else
2309 inode->i_fop = &ext4_file_operations;
Al Viroaf51a2a2013-06-29 13:23:08 +04002310 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002311 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002312 err = ext4_orphan_add(handle, inode);
2313 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002314 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002315 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002316 unlock_new_inode(inode);
2317 }
2318 if (handle)
2319 ext4_journal_stop(handle);
2320 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2321 goto retry;
2322 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002323err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002324 ext4_journal_stop(handle);
2325 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002326 return err;
2327}
2328
Tao Maa774f9c2012-12-10 14:05:57 -05002329struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2330 struct ext4_dir_entry_2 *de,
2331 int blocksize, int csum_size,
2332 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002333{
Tao Maa774f9c2012-12-10 14:05:57 -05002334 de->inode = cpu_to_le32(inode->i_ino);
2335 de->name_len = 1;
2336 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2337 blocksize);
2338 strcpy(de->name, ".");
2339 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2340
2341 de = ext4_next_entry(de, blocksize);
2342 de->inode = cpu_to_le32(parent_ino);
2343 de->name_len = 2;
2344 if (!dotdot_real_len)
2345 de->rec_len = ext4_rec_len_to_disk(blocksize -
2346 (csum_size + EXT4_DIR_REC_LEN(1)),
2347 blocksize);
2348 else
2349 de->rec_len = ext4_rec_len_to_disk(
2350 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2351 strcpy(de->name, "..");
2352 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2353
2354 return ext4_next_entry(de, blocksize);
2355}
2356
2357static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2358 struct inode *inode)
2359{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002360 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002361 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002362 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002363 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002364 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002365 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002366 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002367
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002368 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002369 csum_size = sizeof(struct ext4_dir_entry_tail);
2370
Tao Ma3c47d542012-12-10 14:05:59 -05002371 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2372 err = ext4_try_create_inline_dir(handle, dir, inode);
2373 if (err < 0 && err != -ENOSPC)
2374 goto out;
2375 if (!err)
2376 goto out;
2377 }
2378
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002379 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002380 dir_block = ext4_append(handle, inode, &block);
2381 if (IS_ERR(dir_block))
2382 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002383 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2384 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2385 set_nlink(inode, 2);
2386 if (csum_size) {
2387 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2388 initialize_dirent_tail(t, blocksize);
2389 }
2390
2391 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2392 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2393 if (err)
2394 goto out;
2395 set_buffer_verified(dir_block);
2396out:
2397 brelse(dir_block);
2398 return err;
2399}
2400
2401static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2402{
2403 handle_t *handle;
2404 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002405 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002406
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002407 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002408 return -EMLINK;
2409
Christoph Hellwig871a2932010-03-03 09:05:07 -05002410 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002411
Theodore Ts'o11395752013-02-09 16:27:09 -05002412 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002413 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002414retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002415 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2416 &dentry->d_name,
2417 0, NULL, EXT4_HT_DIR, credits);
2418 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002419 err = PTR_ERR(inode);
2420 if (IS_ERR(inode))
2421 goto out_stop;
2422
Mingming Cao617ba132006-10-11 01:20:53 -07002423 inode->i_op = &ext4_dir_inode_operations;
2424 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002425 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002426 if (err)
2427 goto out_clear_inode;
Namhyung Kimdabd9912011-01-10 12:11:16 -05002428 err = ext4_mark_inode_dirty(handle, inode);
2429 if (!err)
2430 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002431 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002432out_clear_inode:
2433 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002434 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002435 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002436 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002437 goto out_stop;
2438 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002439 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002440 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002441 err = ext4_mark_inode_dirty(handle, dir);
2442 if (err)
2443 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002444 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002445 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002446 if (IS_DIRSYNC(dir))
2447 ext4_handle_sync(handle);
2448
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002449out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002450 if (handle)
2451 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002452 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002453 goto retry;
2454 return err;
2455}
2456
2457/*
2458 * routine to check that the specified directory is empty (for rmdir)
2459 */
Michael Halcrowe875a2d2015-04-11 07:46:49 -04002460int ext4_empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002461{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002462 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002463 struct buffer_head *bh;
2464 struct ext4_dir_entry_2 *de, *de1;
2465 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002466 int err = 0;
2467
Tao Ma61f86632012-12-10 14:06:01 -05002468 if (ext4_has_inline_data(inode)) {
2469 int has_inline_data = 1;
2470
2471 err = empty_inline_dir(inode, &has_inline_data);
2472 if (has_inline_data)
2473 return err;
2474 }
2475
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002476 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002477 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2478 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002479 return 1;
2480 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002481 bh = ext4_read_dirblock(inode, 0, EITHER);
2482 if (IS_ERR(bh))
2483 return 1;
2484
Mingming Cao617ba132006-10-11 01:20:53 -07002485 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002486 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002487 if (le32_to_cpu(de->inode) != inode->i_ino ||
2488 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002489 strcmp(".", de->name) ||
2490 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002491 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002492 "bad directory (dir #%lu) - no `.' or `..'",
2493 inode->i_ino);
2494 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002495 return 1;
2496 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002497 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2498 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2499 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002500 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002501 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002502 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002503 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002504 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002505 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002506 bh = ext4_read_dirblock(inode, lblock, EITHER);
2507 if (IS_ERR(bh))
2508 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002509 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002510 }
Tao Ma226ba972012-12-10 14:05:58 -05002511 if (ext4_check_dir_entry(inode, NULL, de, bh,
2512 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002513 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002514 sb->s_blocksize);
2515 offset = (offset | (sb->s_blocksize - 1)) + 1;
2516 continue;
2517 }
2518 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002519 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002520 return 0;
2521 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002522 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2523 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002525 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002526 return 1;
2527}
2528
Jan Karad745a8c2014-05-26 11:56:53 -04002529/*
2530 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002531 * such inodes, starting at the superblock, in case we crash before the
2532 * file is closed/deleted, or in case the inode truncate spans multiple
2533 * transactions and the last transaction is not recovered after a crash.
2534 *
2535 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002536 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002537 *
2538 * Orphan list manipulation functions must be called under i_mutex unless
2539 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540 */
Mingming Cao617ba132006-10-11 01:20:53 -07002541int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002542{
2543 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002544 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002545 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002546 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002547 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002548
Theodore Ts'oe2bfb082014-10-05 22:47:07 -04002549 if (!sbi->s_journal || is_bad_inode(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05002550 return 0;
2551
Jan Karad745a8c2014-05-26 11:56:53 -04002552 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2553 !mutex_is_locked(&inode->i_mutex));
2554 /*
2555 * Exit early if inode already is on orphan list. This is a big speedup
2556 * since we don't have to contend on the global s_orphan_lock.
2557 */
Mingming Cao617ba132006-10-11 01:20:53 -07002558 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002559 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002560
Lukas Czernerafb86172011-07-11 18:47:04 -04002561 /*
2562 * Orphan handling is only valid for files with data blocks
2563 * being truncated, or files being unlinked. Note that we either
2564 * hold i_mutex, or the inode can not be referenced from outside,
2565 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002566 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002567 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2568 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002569
Jan Karacd2c0802014-05-26 11:39:17 -04002570 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2571 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002572 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002573 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574
Mingming Cao617ba132006-10-11 01:20:53 -07002575 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002576 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002577 goto out;
2578
2579 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002580 /*
2581 * Due to previous errors inode may be already a part of on-disk
2582 * orphan list. If so skip on-disk list modification.
2583 */
Jan Karad745a8c2014-05-26 11:56:53 -04002584 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2585 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2586 /* Insert this inode at the head of the on-disk orphan list */
2587 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2588 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2589 dirty = true;
2590 }
2591 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2592 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593
Jan Karad745a8c2014-05-26 11:56:53 -04002594 if (dirty) {
2595 err = ext4_handle_dirty_super(handle, sb);
2596 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2597 if (!err)
2598 err = rc;
2599 if (err) {
2600 /*
2601 * We have to remove inode from in-memory list if
2602 * addition to on disk orphan list failed. Stray orphan
2603 * list entries can cause panics at unmount time.
2604 */
2605 mutex_lock(&sbi->s_orphan_lock);
2606 list_del(&EXT4_I(inode)->i_orphan);
2607 mutex_unlock(&sbi->s_orphan_lock);
2608 }
2609 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002610 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2611 jbd_debug(4, "orphan inode %lu will point to %d\n",
2612 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002613out:
Jan Karacd2c0802014-05-26 11:39:17 -04002614 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002615 return err;
2616}
2617
2618/*
Mingming Cao617ba132006-10-11 01:20:53 -07002619 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002620 * of such inodes stored on disk, because it is finally being cleaned up.
2621 */
Mingming Cao617ba132006-10-11 01:20:53 -07002622int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002623{
2624 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002625 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002626 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002627 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002628 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002629 int err = 0;
2630
Jan Karacd2c0802014-05-26 11:39:17 -04002631 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002632 return 0;
2633
Jan Karad745a8c2014-05-26 11:56:53 -04002634 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2635 !mutex_is_locked(&inode->i_mutex));
2636 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002637 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002638 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002639
Jan Karad745a8c2014-05-26 11:56:53 -04002640 if (handle) {
2641 /* Grab inode buffer early before taking global s_orphan_lock */
2642 err = ext4_reserve_inode_write(handle, inode, &iloc);
2643 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002644
Jan Karad745a8c2014-05-26 11:56:53 -04002645 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002646 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2647
Jan Karad745a8c2014-05-26 11:56:53 -04002648 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002649 list_del_init(&ei->i_orphan);
2650
2651 /* If we're on an error path, we may not have a valid
2652 * transaction handle with which to update the orphan list on
2653 * disk, but we still need to remove the inode from the linked
2654 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002655 if (!handle || err) {
2656 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002657 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002658 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002659
Jan Karad745a8c2014-05-26 11:56:53 -04002660 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002661 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002662 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002663 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002664 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002665 if (err) {
2666 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002667 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002668 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002669 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002670 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002671 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002673 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002674 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002675 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002676
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002677 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002679 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002680 if (err) {
2681 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002682 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002683 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002684 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002685 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002686 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002687 }
2688 if (err)
2689 goto out_brelse;
2690 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002691 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002693 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002694 return err;
2695
2696out_brelse:
2697 brelse(iloc.bh);
2698 goto out_err;
2699}
2700
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002701static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002702{
2703 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002704 struct inode *inode;
2705 struct buffer_head *bh;
2706 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002707 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708
2709 /* Initialize quotas before so that eventual writes go in
2710 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002711 dquot_initialize(dir);
2712 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002713
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002714 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002715 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002716 if (IS_ERR(bh))
2717 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002718 if (!bh)
2719 goto end_rmdir;
2720
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002721 inode = dentry->d_inode;
2722
2723 retval = -EIO;
2724 if (le32_to_cpu(de->inode) != inode->i_ino)
2725 goto end_rmdir;
2726
2727 retval = -ENOTEMPTY;
Michael Halcrowe875a2d2015-04-11 07:46:49 -04002728 if (!ext4_empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002729 goto end_rmdir;
2730
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002731 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002732 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002733 if (IS_ERR(handle)) {
2734 retval = PTR_ERR(handle);
2735 handle = NULL;
2736 goto end_rmdir;
2737 }
2738
2739 if (IS_DIRSYNC(dir))
2740 ext4_handle_sync(handle);
2741
Mingming Cao617ba132006-10-11 01:20:53 -07002742 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002743 if (retval)
2744 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002745 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002746 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002747 "empty directory has too many links (%d)",
2748 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002749 inode->i_version++;
2750 clear_nlink(inode);
2751 /* There's no need to set i_disksize: the fact that i_nlink is
2752 * zero will ensure that the right thing happens during any
2753 * recovery. */
2754 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002755 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002756 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002757 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002758 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002759 ext4_update_dx_flag(dir);
2760 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002761
2762end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002763 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002764 if (handle)
2765 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002766 return retval;
2767}
2768
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002769static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002770{
2771 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002772 struct inode *inode;
2773 struct buffer_head *bh;
2774 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002775 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002777 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778 /* Initialize quotas before so that eventual writes go
2779 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002780 dquot_initialize(dir);
2781 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002782
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002783 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002784 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002785 if (IS_ERR(bh))
2786 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002787 if (!bh)
2788 goto end_unlink;
2789
2790 inode = dentry->d_inode;
2791
2792 retval = -EIO;
2793 if (le32_to_cpu(de->inode) != inode->i_ino)
2794 goto end_unlink;
2795
Theodore Ts'o931b6862013-02-09 09:43:39 -05002796 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002797 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002798 if (IS_ERR(handle)) {
2799 retval = PTR_ERR(handle);
2800 handle = NULL;
2801 goto end_unlink;
2802 }
2803
2804 if (IS_DIRSYNC(dir))
2805 ext4_handle_sync(handle);
2806
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002807 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002808 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002809 "Deleting nonexistent file (%lu), %d",
2810 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002811 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002812 }
Mingming Cao617ba132006-10-11 01:20:53 -07002813 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002814 if (retval)
2815 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002816 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002817 ext4_update_dx_flag(dir);
2818 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002819 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002820 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002821 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002822 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002823 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824
2825end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002826 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002827 if (handle)
2828 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002829 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002830 return retval;
2831}
2832
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002833static int ext4_symlink(struct inode *dir,
2834 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002835{
2836 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002837 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002838 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002839 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002840
2841 l = strlen(symname)+1;
2842 if (l > dir->i_sb->s_blocksize)
2843 return -ENAMETOOLONG;
2844
Christoph Hellwig871a2932010-03-03 09:05:07 -05002845 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002846
Jan Karadf5e6222011-05-03 11:12:58 -04002847 if (l > EXT4_N_BLOCKS * 4) {
2848 /*
2849 * For non-fast symlinks, we just allocate inode and put it on
2850 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002851 * group descriptor, sb, inode block, quota blocks, and
2852 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002853 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002854 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2855 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002856 } else {
2857 /*
2858 * Fast symlink. We have to add entry to directory
2859 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2860 * allocate new inode (bitmap, group descriptor, inode block,
2861 * quota blocks, sb is already counted in previous macros).
2862 */
2863 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002864 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002865 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002866retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002867 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2868 &dentry->d_name, 0, NULL,
2869 EXT4_HT_DIR, credits);
2870 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002871 err = PTR_ERR(inode);
2872 if (IS_ERR(inode))
2873 goto out_stop;
2874
Jan Karadf5e6222011-05-03 11:12:58 -04002875 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002876 inode->i_op = &ext4_symlink_inode_operations;
2877 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002878 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002879 * We cannot call page_symlink() with transaction started
2880 * because it calls into ext4_write_begin() which can wait
2881 * for transaction commit if we are running out of space
2882 * and thus we deadlock. So we have to stop transaction now
2883 * and restart it when symlink contents is written.
2884 *
2885 * To keep fs consistent in case of crash, we have to put inode
2886 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002887 */
Jan Karadf5e6222011-05-03 11:12:58 -04002888 drop_nlink(inode);
2889 err = ext4_orphan_add(handle, inode);
2890 ext4_journal_stop(handle);
2891 if (err)
2892 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002893 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002894 if (err)
2895 goto err_drop_inode;
2896 /*
2897 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2898 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2899 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002900 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002901 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2902 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2903 if (IS_ERR(handle)) {
2904 err = PTR_ERR(handle);
2905 goto err_drop_inode;
2906 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002907 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002908 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002910 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002911 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002912 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002913 }
2914 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002915 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002916 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002917 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002918 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002919 inode->i_size = l-1;
2920 }
Mingming Cao617ba132006-10-11 01:20:53 -07002921 EXT4_I(inode)->i_disksize = inode->i_size;
2922 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002923 if (!err && IS_DIRSYNC(dir))
2924 ext4_handle_sync(handle);
2925
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002927 if (handle)
2928 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002929 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002930 goto retry;
2931 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002932err_drop_inode:
2933 unlock_new_inode(inode);
2934 iput(inode);
2935 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002936}
2937
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002938static int ext4_link(struct dentry *old_dentry,
2939 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002940{
2941 handle_t *handle;
2942 struct inode *inode = old_dentry->d_inode;
2943 int err, retries = 0;
2944
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002945 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002946 return -EMLINK;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002947
Christoph Hellwig871a2932010-03-03 09:05:07 -05002948 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002949
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002950retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002951 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2952 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002953 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954 if (IS_ERR(handle))
2955 return PTR_ERR(handle);
2956
2957 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05002958 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002959
Kalpak Shahef7f3832007-07-18 09:15:20 -04002960 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002961 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002962 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963
Al Viro6b38e842008-12-30 02:03:31 -05002964 err = ext4_add_entry(handle, dentry, inode);
2965 if (!err) {
2966 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002967 /* this can happen only for tmpfile being
2968 * linked the first time
2969 */
2970 if (inode->i_nlink == 1)
2971 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002972 d_instantiate(dentry, inode);
2973 } else {
2974 drop_nlink(inode);
2975 iput(inode);
2976 }
Mingming Cao617ba132006-10-11 01:20:53 -07002977 ext4_journal_stop(handle);
2978 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 goto retry;
2980 return err;
2981}
2982
Tao Ma32f7f222012-12-10 14:06:01 -05002983
2984/*
2985 * Try to find buffer head where contains the parent block.
2986 * It should be the inode block if it is inlined or the 1st block
2987 * if it is a normal dir.
2988 */
2989static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
2990 struct inode *inode,
2991 int *retval,
2992 struct ext4_dir_entry_2 **parent_de,
2993 int *inlined)
2994{
2995 struct buffer_head *bh;
2996
2997 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002998 bh = ext4_read_dirblock(inode, 0, EITHER);
2999 if (IS_ERR(bh)) {
3000 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05003001 return NULL;
3002 }
3003 *parent_de = ext4_next_entry(
3004 (struct ext4_dir_entry_2 *)bh->b_data,
3005 inode->i_sb->s_blocksize);
3006 return bh;
3007 }
3008
3009 *inlined = 1;
3010 return ext4_get_first_inline_block(inode, parent_de, retval);
3011}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003012
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003013struct ext4_renament {
3014 struct inode *dir;
3015 struct dentry *dentry;
3016 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003017 bool is_dir;
3018 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003019
3020 /* entry for "dentry" */
3021 struct buffer_head *bh;
3022 struct ext4_dir_entry_2 *de;
3023 int inlined;
3024
3025 /* entry for ".." in inode if it's a directory */
3026 struct buffer_head *dir_bh;
3027 struct ext4_dir_entry_2 *parent_de;
3028 int dir_inlined;
3029};
3030
Miklos Szeredibd1af142014-04-01 17:08:44 +02003031static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3032{
3033 int retval;
3034
3035 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3036 &retval, &ent->parent_de,
3037 &ent->dir_inlined);
3038 if (!ent->dir_bh)
3039 return retval;
3040 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3041 return -EIO;
3042 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3043 return ext4_journal_get_write_access(handle, ent->dir_bh);
3044}
3045
3046static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3047 unsigned dir_ino)
3048{
3049 int retval;
3050
3051 ent->parent_de->inode = cpu_to_le32(dir_ino);
3052 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3053 if (!ent->dir_inlined) {
3054 if (is_dx(ent->inode)) {
3055 retval = ext4_handle_dirty_dx_node(handle,
3056 ent->inode,
3057 ent->dir_bh);
3058 } else {
3059 retval = ext4_handle_dirty_dirent_node(handle,
3060 ent->inode,
3061 ent->dir_bh);
3062 }
3063 } else {
3064 retval = ext4_mark_inode_dirty(handle, ent->inode);
3065 }
3066 if (retval) {
3067 ext4_std_error(ent->dir->i_sb, retval);
3068 return retval;
3069 }
3070 return 0;
3071}
3072
3073static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3074 unsigned ino, unsigned file_type)
3075{
3076 int retval;
3077
3078 BUFFER_TRACE(ent->bh, "get write access");
3079 retval = ext4_journal_get_write_access(handle, ent->bh);
3080 if (retval)
3081 return retval;
3082 ent->de->inode = cpu_to_le32(ino);
3083 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3084 EXT4_FEATURE_INCOMPAT_FILETYPE))
3085 ent->de->file_type = file_type;
3086 ent->dir->i_version++;
3087 ent->dir->i_ctime = ent->dir->i_mtime =
3088 ext4_current_time(ent->dir);
3089 ext4_mark_inode_dirty(handle, ent->dir);
3090 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3091 if (!ent->inlined) {
3092 retval = ext4_handle_dirty_dirent_node(handle,
3093 ent->dir, ent->bh);
3094 if (unlikely(retval)) {
3095 ext4_std_error(ent->dir->i_sb, retval);
3096 return retval;
3097 }
3098 }
3099 brelse(ent->bh);
3100 ent->bh = NULL;
3101
3102 return 0;
3103}
3104
3105static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3106 const struct qstr *d_name)
3107{
3108 int retval = -ENOENT;
3109 struct buffer_head *bh;
3110 struct ext4_dir_entry_2 *de;
3111
3112 bh = ext4_find_entry(dir, d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003113 if (IS_ERR(bh))
3114 return PTR_ERR(bh);
Miklos Szeredibd1af142014-04-01 17:08:44 +02003115 if (bh) {
3116 retval = ext4_delete_entry(handle, dir, de, bh);
3117 brelse(bh);
3118 }
3119 return retval;
3120}
3121
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003122static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3123 int force_reread)
Miklos Szeredibd1af142014-04-01 17:08:44 +02003124{
3125 int retval;
3126 /*
3127 * ent->de could have moved from under us during htree split, so make
3128 * sure that we are deleting the right entry. We might also be pointing
3129 * to a stale entry in the unused part of ent->bh so just checking inum
3130 * and the name isn't enough.
3131 */
3132 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3133 ent->de->name_len != ent->dentry->d_name.len ||
3134 strncmp(ent->de->name, ent->dentry->d_name.name,
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003135 ent->de->name_len) ||
3136 force_reread) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003137 retval = ext4_find_delete_entry(handle, ent->dir,
3138 &ent->dentry->d_name);
3139 } else {
3140 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3141 if (retval == -ENOENT) {
3142 retval = ext4_find_delete_entry(handle, ent->dir,
3143 &ent->dentry->d_name);
3144 }
3145 }
3146
3147 if (retval) {
3148 ext4_warning(ent->dir->i_sb,
3149 "Deleting old file (%lu), %d, error=%d",
3150 ent->dir->i_ino, ent->dir->i_nlink, retval);
3151 }
3152}
3153
Miklos Szeredibd429982014-04-01 17:08:44 +02003154static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3155{
3156 if (ent->dir_nlink_delta) {
3157 if (ent->dir_nlink_delta == -1)
3158 ext4_dec_count(handle, ent->dir);
3159 else
3160 ext4_inc_count(handle, ent->dir);
3161 ext4_mark_inode_dirty(handle, ent->dir);
3162 }
3163}
3164
Miklos Szeredicd808de2014-10-24 00:14:37 +02003165static struct inode *ext4_whiteout_for_rename(struct ext4_renament *ent,
3166 int credits, handle_t **h)
3167{
3168 struct inode *wh;
3169 handle_t *handle;
3170 int retries = 0;
3171
3172 /*
3173 * for inode block, sb block, group summaries,
3174 * and inode bitmap
3175 */
3176 credits += (EXT4_MAXQUOTAS_TRANS_BLOCKS(ent->dir->i_sb) +
3177 EXT4_XATTR_TRANS_BLOCKS + 4);
3178retry:
3179 wh = ext4_new_inode_start_handle(ent->dir, S_IFCHR | WHITEOUT_MODE,
3180 &ent->dentry->d_name, 0, NULL,
3181 EXT4_HT_DIR, credits);
3182
3183 handle = ext4_journal_current_handle();
3184 if (IS_ERR(wh)) {
3185 if (handle)
3186 ext4_journal_stop(handle);
3187 if (PTR_ERR(wh) == -ENOSPC &&
3188 ext4_should_retry_alloc(ent->dir->i_sb, &retries))
3189 goto retry;
3190 } else {
3191 *h = handle;
3192 init_special_inode(wh, wh->i_mode, WHITEOUT_DEV);
3193 wh->i_op = &ext4_special_inode_operations;
3194 }
3195 return wh;
3196}
3197
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003198/*
3199 * Anybody can rename anything with this: the permission checks are left to the
3200 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003201 *
3202 * n.b. old_{dentry,inode) refers to the source dentry/inode
3203 * while new_{dentry,inode) refers to the destination dentry/inode
3204 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003206static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredicd808de2014-10-24 00:14:37 +02003207 struct inode *new_dir, struct dentry *new_dentry,
3208 unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003209{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003210 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003211 struct ext4_renament old = {
3212 .dir = old_dir,
3213 .dentry = old_dentry,
3214 .inode = old_dentry->d_inode,
3215 };
3216 struct ext4_renament new = {
3217 .dir = new_dir,
3218 .dentry = new_dentry,
3219 .inode = new_dentry->d_inode,
3220 };
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003221 int force_reread;
Theodore Ts'o0e202702013-08-16 22:06:53 -04003222 int retval;
Miklos Szeredicd808de2014-10-24 00:14:37 +02003223 struct inode *whiteout = NULL;
3224 int credits;
3225 u8 old_file_type;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003226
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003227 dquot_initialize(old.dir);
3228 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003229
3230 /* Initialize quotas before so that eventual writes go
3231 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003232 if (new.inode)
3233 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003234
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003235 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003236 if (IS_ERR(old.bh))
3237 return PTR_ERR(old.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003238 /*
3239 * Check for inode number is _not_ due to possible IO errors.
3240 * We might rmdir the source, keep it as pwd of some process
3241 * and merrily kill the link to whatever was created under the
3242 * same name. Goodbye sticky bit ;-<
3243 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003245 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003246 goto end_rename;
3247
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003248 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3249 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003250 if (IS_ERR(new.bh)) {
3251 retval = PTR_ERR(new.bh);
Theodore Ts'oa9cfcd62014-09-03 09:33:00 -04003252 new.bh = NULL;
Theodore Ts'o36de9282014-08-23 17:47:19 -04003253 goto end_rename;
3254 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003255 if (new.bh) {
3256 if (!new.inode) {
3257 brelse(new.bh);
3258 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003259 }
3260 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003261 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3262 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003263
Miklos Szeredicd808de2014-10-24 00:14:37 +02003264 credits = (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3265 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
3266 if (!(flags & RENAME_WHITEOUT)) {
3267 handle = ext4_journal_start(old.dir, EXT4_HT_DIR, credits);
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003268 if (IS_ERR(handle)) {
3269 retval = PTR_ERR(handle);
3270 handle = NULL;
3271 goto end_rename;
3272 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003273 } else {
3274 whiteout = ext4_whiteout_for_rename(&old, credits, &handle);
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003275 if (IS_ERR(whiteout)) {
3276 retval = PTR_ERR(whiteout);
3277 whiteout = NULL;
3278 goto end_rename;
3279 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003280 }
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003281
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003282 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003283 ext4_handle_sync(handle);
3284
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003285 if (S_ISDIR(old.inode->i_mode)) {
3286 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 retval = -ENOTEMPTY;
Michael Halcrowe875a2d2015-04-11 07:46:49 -04003288 if (!ext4_empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003290 } else {
3291 retval = -EMLINK;
3292 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3293 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003295 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003296 if (retval)
3297 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003298 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003299 /*
3300 * If we're renaming a file within an inline_data dir and adding or
3301 * setting the new dirent causes a conversion from inline_data to
3302 * extents/blockmap, we need to force the dirent delete code to
3303 * re-read the directory, or else we end up trying to delete a dirent
3304 * from what is now the extent tree root (or a block map).
3305 */
3306 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3307 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
Miklos Szeredicd808de2014-10-24 00:14:37 +02003308
3309 old_file_type = old.de->file_type;
3310 if (whiteout) {
3311 /*
3312 * Do this before adding a new entry, so the old entry is sure
3313 * to be still pointing to the valid old entry.
3314 */
3315 retval = ext4_setent(handle, &old, whiteout->i_ino,
3316 EXT4_FT_CHRDEV);
3317 if (retval)
3318 goto end_rename;
3319 ext4_mark_inode_dirty(handle, whiteout);
3320 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003321 if (!new.bh) {
3322 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323 if (retval)
3324 goto end_rename;
3325 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003326 retval = ext4_setent(handle, &new,
Miklos Szeredicd808de2014-10-24 00:14:37 +02003327 old.inode->i_ino, old_file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003328 if (retval)
3329 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003330 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003331 if (force_reread)
3332 force_reread = !ext4_test_inode_flag(new.dir,
3333 EXT4_INODE_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334
3335 /*
3336 * Like most other Unix systems, set the ctime for inodes on a
3337 * rename.
3338 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003339 old.inode->i_ctime = ext4_current_time(old.inode);
3340 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003341
Miklos Szeredicd808de2014-10-24 00:14:37 +02003342 if (!whiteout) {
3343 /*
3344 * ok, that's it
3345 */
3346 ext4_rename_delete(handle, &old, force_reread);
3347 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003348
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003349 if (new.inode) {
3350 ext4_dec_count(handle, new.inode);
3351 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003352 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003353 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3354 ext4_update_dx_flag(old.dir);
3355 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003356 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3357 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003358 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003359
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003360 ext4_dec_count(handle, old.dir);
3361 if (new.inode) {
Michael Halcrowe875a2d2015-04-11 07:46:49 -04003362 /* checked ext4_empty_dir above, can't have another
3363 * parent, ext4_dec_count() won't work for many-linked
3364 * dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003365 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003366 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003367 ext4_inc_count(handle, new.dir);
3368 ext4_update_dx_flag(new.dir);
3369 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370 }
3371 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003372 ext4_mark_inode_dirty(handle, old.dir);
3373 if (new.inode) {
3374 ext4_mark_inode_dirty(handle, new.inode);
3375 if (!new.inode->i_nlink)
3376 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003377 }
3378 retval = 0;
3379
3380end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003381 brelse(old.dir_bh);
3382 brelse(old.bh);
3383 brelse(new.bh);
Miklos Szeredicd808de2014-10-24 00:14:37 +02003384 if (whiteout) {
3385 if (retval)
3386 drop_nlink(whiteout);
3387 unlock_new_inode(whiteout);
3388 iput(whiteout);
3389 }
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003390 if (handle)
3391 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003392 return retval;
3393}
3394
Miklos Szeredibd429982014-04-01 17:08:44 +02003395static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3396 struct inode *new_dir, struct dentry *new_dentry)
3397{
3398 handle_t *handle = NULL;
3399 struct ext4_renament old = {
3400 .dir = old_dir,
3401 .dentry = old_dentry,
3402 .inode = old_dentry->d_inode,
3403 };
3404 struct ext4_renament new = {
3405 .dir = new_dir,
3406 .dentry = new_dentry,
3407 .inode = new_dentry->d_inode,
3408 };
3409 u8 new_file_type;
3410 int retval;
3411
3412 dquot_initialize(old.dir);
3413 dquot_initialize(new.dir);
3414
3415 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3416 &old.de, &old.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003417 if (IS_ERR(old.bh))
3418 return PTR_ERR(old.bh);
Miklos Szeredibd429982014-04-01 17:08:44 +02003419 /*
3420 * Check for inode number is _not_ due to possible IO errors.
3421 * We might rmdir the source, keep it as pwd of some process
3422 * and merrily kill the link to whatever was created under the
3423 * same name. Goodbye sticky bit ;-<
3424 */
3425 retval = -ENOENT;
3426 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3427 goto end_rename;
3428
3429 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3430 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003431 if (IS_ERR(new.bh)) {
3432 retval = PTR_ERR(new.bh);
Theodore Ts'oa9cfcd62014-09-03 09:33:00 -04003433 new.bh = NULL;
Theodore Ts'o36de9282014-08-23 17:47:19 -04003434 goto end_rename;
3435 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003436
3437 /* RENAME_EXCHANGE case: old *and* new must both exist */
3438 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3439 goto end_rename;
3440
3441 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3442 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3443 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003444 if (IS_ERR(handle)) {
3445 retval = PTR_ERR(handle);
3446 handle = NULL;
3447 goto end_rename;
3448 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003449
3450 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3451 ext4_handle_sync(handle);
3452
3453 if (S_ISDIR(old.inode->i_mode)) {
3454 old.is_dir = true;
3455 retval = ext4_rename_dir_prepare(handle, &old);
3456 if (retval)
3457 goto end_rename;
3458 }
3459 if (S_ISDIR(new.inode->i_mode)) {
3460 new.is_dir = true;
3461 retval = ext4_rename_dir_prepare(handle, &new);
3462 if (retval)
3463 goto end_rename;
3464 }
3465
3466 /*
3467 * Other than the special case of overwriting a directory, parents'
3468 * nlink only needs to be modified if this is a cross directory rename.
3469 */
3470 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3471 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3472 new.dir_nlink_delta = -old.dir_nlink_delta;
3473 retval = -EMLINK;
3474 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3475 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3476 goto end_rename;
3477 }
3478
3479 new_file_type = new.de->file_type;
3480 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3481 if (retval)
3482 goto end_rename;
3483
3484 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3485 if (retval)
3486 goto end_rename;
3487
3488 /*
3489 * Like most other Unix systems, set the ctime for inodes on a
3490 * rename.
3491 */
3492 old.inode->i_ctime = ext4_current_time(old.inode);
3493 new.inode->i_ctime = ext4_current_time(new.inode);
3494 ext4_mark_inode_dirty(handle, old.inode);
3495 ext4_mark_inode_dirty(handle, new.inode);
3496
3497 if (old.dir_bh) {
3498 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3499 if (retval)
3500 goto end_rename;
3501 }
3502 if (new.dir_bh) {
3503 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3504 if (retval)
3505 goto end_rename;
3506 }
3507 ext4_update_dir_count(handle, &old);
3508 ext4_update_dir_count(handle, &new);
3509 retval = 0;
3510
3511end_rename:
3512 brelse(old.dir_bh);
3513 brelse(new.dir_bh);
3514 brelse(old.bh);
3515 brelse(new.bh);
3516 if (handle)
3517 ext4_journal_stop(handle);
3518 return retval;
3519}
3520
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003521static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3522 struct inode *new_dir, struct dentry *new_dentry,
3523 unsigned int flags)
3524{
Miklos Szeredicd808de2014-10-24 00:14:37 +02003525 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003526 return -EINVAL;
3527
Miklos Szeredibd429982014-04-01 17:08:44 +02003528 if (flags & RENAME_EXCHANGE) {
3529 return ext4_cross_rename(old_dir, old_dentry,
3530 new_dir, new_dentry);
3531 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003532
3533 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003534}
3535
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536/*
3537 * directories can handle most operations...
3538 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003539const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003540 .create = ext4_create,
3541 .lookup = ext4_lookup,
3542 .link = ext4_link,
3543 .unlink = ext4_unlink,
3544 .symlink = ext4_symlink,
3545 .mkdir = ext4_mkdir,
3546 .rmdir = ext4_rmdir,
3547 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003548 .tmpfile = ext4_tmpfile,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003549 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003550 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003551 .setxattr = generic_setxattr,
3552 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003553 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003554 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003555 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003556 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003557 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003558};
3559
Arjan van de Ven754661f2007-02-12 00:55:38 -08003560const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003561 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003562 .setxattr = generic_setxattr,
3563 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003564 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003565 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003566 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003567 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003568};