blob: 8cef115ee64a344549ecd45f4b43b92267316fc1 [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;
Theodore Ts'o2f618302015-04-12 00:56:26 -0400880 struct ext4_str tmp_str;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500882 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
883 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500884 bh = ext4_read_dirblock(dir, block, DIRENT);
885 if (IS_ERR(bh))
886 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400887
Mingming Cao617ba132006-10-11 01:20:53 -0700888 de = (struct ext4_dir_entry_2 *) bh->b_data;
889 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700891 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500892 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500893 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500894 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500895 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
896 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400897 /* silently ignore the rest of the block */
898 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800899 }
Mingming Cao617ba132006-10-11 01:20:53 -0700900 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 if ((hinfo->hash < start_hash) ||
902 ((hinfo->hash == start_hash) &&
903 (hinfo->minor_hash < start_minor_hash)))
904 continue;
905 if (de->inode == 0)
906 continue;
Theodore Ts'o2f618302015-04-12 00:56:26 -0400907 tmp_str.name = de->name;
908 tmp_str.len = de->name_len;
909 err = ext4_htree_store_dirent(dir_file,
910 hinfo->hash, hinfo->minor_hash, de, &tmp_str);
911 if (err != 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700912 brelse(bh);
913 return err;
914 }
915 count++;
916 }
917 brelse(bh);
918 return count;
919}
920
921
922/*
923 * This function fills a red-black tree with information from a
924 * directory. We start scanning the directory in hash order, starting
925 * at start_hash and start_minor_hash.
926 *
927 * This function returns the number of entries inserted into the tree,
928 * or a negative error code.
929 */
Mingming Cao617ba132006-10-11 01:20:53 -0700930int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700931 __u32 start_minor_hash, __u32 *next_hash)
932{
933 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700934 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700935 struct dx_frame frames[2], *frame;
936 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500937 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700938 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500939 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700940 __u32 hashval;
Theodore Ts'o2f618302015-04-12 00:56:26 -0400941 struct ext4_str tmp_str;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942
Theodore Ts'o60e66792010-05-17 07:00:00 -0400943 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400944 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500945 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400946 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700947 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400948 if (hinfo.hash_version <= DX_HASH_TEA)
949 hinfo.hash_version +=
950 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700951 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400952 if (ext4_has_inline_data(dir)) {
953 int has_inline_data = 1;
954 count = htree_inlinedir_to_tree(dir_file, dir, 0,
955 &hinfo, start_hash,
956 start_minor_hash,
957 &has_inline_data);
958 if (has_inline_data) {
959 *next_hash = ~0;
960 return count;
961 }
962 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
964 start_hash, start_minor_hash);
965 *next_hash = ~0;
966 return count;
967 }
968 hinfo.hash = start_hash;
969 hinfo.minor_hash = 0;
Theodore Ts'odd73b5d2014-08-29 20:52:17 -0400970 frame = dx_probe(NULL, dir, &hinfo, frames);
971 if (IS_ERR(frame))
972 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973
974 /* Add '.' and '..' from the htree header */
975 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700976 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Theodore Ts'o2f618302015-04-12 00:56:26 -0400977 tmp_str.name = de->name;
978 tmp_str.len = de->name_len;
979 err = ext4_htree_store_dirent(dir_file, 0, 0,
980 de, &tmp_str);
981 if (err != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 goto errout;
983 count++;
984 }
985 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700986 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500987 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Theodore Ts'o2f618302015-04-12 00:56:26 -0400988 tmp_str.name = de->name;
989 tmp_str.len = de->name_len;
990 err = ext4_htree_store_dirent(dir_file, 2, 0,
991 de, &tmp_str);
992 if (err != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993 goto errout;
994 count++;
995 }
996
997 while (1) {
998 block = dx_get_block(frame->at);
999 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
1000 start_hash, start_minor_hash);
1001 if (ret < 0) {
1002 err = ret;
1003 goto errout;
1004 }
1005 count += ret;
1006 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -07001007 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008 frame, frames, &hashval);
1009 *next_hash = hashval;
1010 if (ret < 0) {
1011 err = ret;
1012 goto errout;
1013 }
1014 /*
1015 * Stop if: (a) there are no more entries, or
1016 * (b) we have inserted at least one entry and the
1017 * next hash value is not a continuation
1018 */
1019 if ((ret == 0) ||
1020 (count && ((hashval & 1) == 0)))
1021 break;
1022 }
1023 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001024 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1025 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001026 return count;
1027errout:
1028 dx_release(frames);
1029 return (err);
1030}
1031
Tao Ma7335cd32012-12-10 14:05:59 -05001032static inline int search_dirblock(struct buffer_head *bh,
1033 struct inode *dir,
1034 const struct qstr *d_name,
1035 unsigned int offset,
1036 struct ext4_dir_entry_2 **res_dir)
1037{
1038 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1039 d_name, offset, res_dir);
1040}
1041
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001042/*
1043 * Directory block splitting, compacting
1044 */
1045
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001046/*
1047 * Create map of hash values, offsets, and sizes, stored at end of block.
1048 * Returns number of entries mapped.
1049 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001050static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1051 struct dx_hash_info *hinfo,
1052 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001053{
1054 int count = 0;
1055 char *base = (char *) de;
1056 struct dx_hash_info h = *hinfo;
1057
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001058 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001059 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001060 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001061 map_tail--;
1062 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001063 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001064 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 count++;
1066 cond_resched();
1067 }
1068 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001069 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070 }
1071 return count;
1072}
1073
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001074/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001075static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1076{
Andrew Morton63f57932006-10-11 01:21:24 -07001077 struct dx_map_entry *p, *q, *top = map + count - 1;
1078 int more;
1079 /* Combsort until bubble sort doesn't suck */
1080 while (count > 2) {
1081 count = count*10/13;
1082 if (count - 9 < 2) /* 9, 10 -> 11 */
1083 count = 11;
1084 for (p = top, q = p - count; q >= map; p--, q--)
1085 if (p->hash < q->hash)
1086 swap(*p, *q);
1087 }
1088 /* Garden variety bubble sort */
1089 do {
1090 more = 0;
1091 q = top;
1092 while (q-- > map) {
1093 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001095 swap(*(q+1), *q);
1096 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097 }
1098 } while(more);
1099}
1100
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001101static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001102{
1103 struct dx_entry *entries = frame->entries;
1104 struct dx_entry *old = frame->at, *new = old + 1;
1105 int count = dx_get_count(entries);
1106
1107 assert(count < dx_get_limit(entries));
1108 assert(old < entries + count);
1109 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1110 dx_set_hash(new, hash);
1111 dx_set_block(new, block);
1112 dx_set_count(entries, count + 1);
1113}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001114
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001115/*
Mingming Cao617ba132006-10-11 01:20:53 -07001116 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001117 *
Mingming Cao617ba132006-10-11 01:20:53 -07001118 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001119 * `de != NULL' is guaranteed by caller.
1120 */
Mingming Cao617ba132006-10-11 01:20:53 -07001121static inline int ext4_match (int len, const char * const name,
1122 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001123{
1124 if (len != de->name_len)
1125 return 0;
1126 if (!de->inode)
1127 return 0;
1128 return !memcmp(name, de->name, len);
1129}
1130
1131/*
1132 * Returns 0 if not found, -1 on failure, and 1 on success
1133 */
Tao Ma7335cd32012-12-10 14:05:59 -05001134int search_dir(struct buffer_head *bh,
1135 char *search_buf,
1136 int buf_size,
1137 struct inode *dir,
1138 const struct qstr *d_name,
1139 unsigned int offset,
1140 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001141{
Mingming Cao617ba132006-10-11 01:20:53 -07001142 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 char * dlimit;
1144 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001145 const char *name = d_name->name;
1146 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001147
Tao Ma7335cd32012-12-10 14:05:59 -05001148 de = (struct ext4_dir_entry_2 *)search_buf;
1149 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001150 while ((char *) de < dlimit) {
1151 /* this code is executed quadratically often */
1152 /* do minimal checking `by hand' */
1153
1154 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001155 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001156 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001157 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1158 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001159 return -1;
1160 *res_dir = de;
1161 return 1;
1162 }
1163 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001164 de_len = ext4_rec_len_from_disk(de->rec_len,
1165 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001166 if (de_len <= 0)
1167 return -1;
1168 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001169 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001170 }
1171 return 0;
1172}
1173
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001174static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1175 struct ext4_dir_entry *de)
1176{
1177 struct super_block *sb = dir->i_sb;
1178
1179 if (!is_dx(dir))
1180 return 0;
1181 if (block == 0)
1182 return 1;
1183 if (de->inode == 0 &&
1184 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1185 sb->s_blocksize)
1186 return 1;
1187 return 0;
1188}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001189
1190/*
Mingming Cao617ba132006-10-11 01:20:53 -07001191 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001192 *
1193 * finds an entry in the specified directory with the wanted name. It
1194 * returns the cache buffer in which the entry was found, and the entry
1195 * itself (as a parameter - res_dir). It does NOT read the inode of the
1196 * entry - you'll have to do that yourself if you want to.
1197 *
1198 * The returned buffer_head has ->b_count elevated. The caller is expected
1199 * to brelse() it when appropriate.
1200 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001201static struct buffer_head * ext4_find_entry (struct inode *dir,
1202 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001203 struct ext4_dir_entry_2 **res_dir,
1204 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001205{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001206 struct super_block *sb;
1207 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1208 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001209 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001210 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211 int ra_max = 0; /* Number of bh's in the readahead
1212 buffer, bh_use[] */
1213 int ra_ptr = 0; /* Current index into readahead
1214 buffer */
1215 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001216 ext4_lblk_t nblocks;
Theodore Ts'o10560082014-08-29 20:51:32 -04001217 int i, namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218
1219 *res_dir = NULL;
1220 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001221 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001222 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001223 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001224
1225 if (ext4_has_inline_data(dir)) {
1226 int has_inline_data = 1;
1227 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1228 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001229 if (has_inline_data) {
1230 if (inlined)
1231 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001232 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001233 }
Tao Mae8e948e2012-12-10 14:06:00 -05001234 }
1235
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001236 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001237 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001238 /*
1239 * "." or ".." will only be in the first block
1240 * NFS may look up ".."; "." should be handled by the VFS
1241 */
1242 block = start = 0;
1243 nblocks = 1;
1244 goto restart;
1245 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 if (is_dx(dir)) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001247 bh = ext4_dx_find_entry(dir, d_name, res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001248 /*
1249 * On success, or if the error was file not found,
1250 * return. Otherwise, fall back to doing a search the
1251 * old fashioned way.
1252 */
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001253 if (!IS_ERR(bh) || PTR_ERR(bh) != ERR_BAD_DX_DIR)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001254 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001255 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1256 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001257 }
Mingming Cao617ba132006-10-11 01:20:53 -07001258 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1259 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 if (start >= nblocks)
1261 start = 0;
1262 block = start;
1263restart:
1264 do {
1265 /*
1266 * We deal with the read-ahead logic here.
1267 */
1268 if (ra_ptr >= ra_max) {
1269 /* Refill the readahead buffer */
1270 ra_ptr = 0;
1271 b = block;
1272 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1273 /*
1274 * Terminate if we reach the end of the
1275 * directory and must wrap, or if our
1276 * search has finished at this block.
1277 */
1278 if (b >= nblocks || (num && block == start)) {
1279 bh_use[ra_max] = NULL;
1280 break;
1281 }
1282 num++;
Theodore Ts'o10560082014-08-29 20:51:32 -04001283 bh = ext4_getblk(NULL, dir, b++, 0);
1284 if (unlikely(IS_ERR(bh))) {
Theodore Ts'o36de9282014-08-23 17:47:19 -04001285 if (ra_max == 0)
Theodore Ts'o10560082014-08-29 20:51:32 -04001286 return bh;
Theodore Ts'o36de9282014-08-23 17:47:19 -04001287 break;
1288 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 bh_use[ra_max] = bh;
1290 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001291 ll_rw_block(READ | REQ_META | REQ_PRIO,
1292 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001293 }
1294 }
1295 if ((bh = bh_use[ra_ptr++]) == NULL)
1296 goto next;
1297 wait_on_buffer(bh);
1298 if (!buffer_uptodate(bh)) {
1299 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001300 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1301 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302 brelse(bh);
1303 goto next;
1304 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001305 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001306 !is_dx_internal_node(dir, block,
1307 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001308 !ext4_dirent_csum_verify(dir,
1309 (struct ext4_dir_entry *)bh->b_data)) {
1310 EXT4_ERROR_INODE(dir, "checksumming directory "
1311 "block %lu", (unsigned long)block);
1312 brelse(bh);
1313 goto next;
1314 }
1315 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001316 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001317 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001318 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001319 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001320 ret = bh;
1321 goto cleanup_and_exit;
1322 } else {
1323 brelse(bh);
1324 if (i < 0)
1325 goto cleanup_and_exit;
1326 }
1327 next:
1328 if (++block >= nblocks)
1329 block = 0;
1330 } while (block != start);
1331
1332 /*
1333 * If the directory has grown while we were searching, then
1334 * search the last part of the directory before giving up.
1335 */
1336 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001337 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001338 if (block < nblocks) {
1339 start = 0;
1340 goto restart;
1341 }
1342
1343cleanup_and_exit:
1344 /* Clean up the read-ahead blocks */
1345 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001346 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347 return ret;
1348}
1349
Theodore Ts'of702ba02008-09-22 15:21:01 -04001350static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001351 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001352{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001353 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001356 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001357 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001358 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001359
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001360 frame = dx_probe(d_name, dir, &hinfo, frames);
1361 if (IS_ERR(frame))
1362 return (struct buffer_head *) frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001363 do {
1364 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001365 bh = ext4_read_dirblock(dir, block, DIRENT);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001366 if (IS_ERR(bh))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 goto errout;
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001368
Theodore Ts'o7845c042010-10-27 21:30:08 -04001369 retval = search_dirblock(bh, dir, d_name,
1370 block << EXT4_BLOCK_SIZE_BITS(sb),
1371 res_dir);
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001372 if (retval == 1)
1373 goto success;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001374 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001375 if (retval == -1) {
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001376 bh = ERR_PTR(ERR_BAD_DX_DIR);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001377 goto errout;
1378 }
1379
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001381 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001382 frames, NULL);
1383 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001384 ext4_warning(sb,
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001385 "error %d reading index page in directory #%lu",
1386 retval, dir->i_ino);
1387 bh = ERR_PTR(retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388 goto errout;
1389 }
1390 } while (retval == 1);
1391
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001392 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001394 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Theodore Ts'o537d8f92014-08-29 20:49:51 -04001395success:
1396 dx_release(frames);
1397 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001398}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001399
Al Viro00cd8dd2012-06-10 17:13:09 -04001400static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001401{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001402 struct inode *inode;
1403 struct ext4_dir_entry_2 *de;
1404 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001405
Mingming Cao617ba132006-10-11 01:20:53 -07001406 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 return ERR_PTR(-ENAMETOOLONG);
1408
Tao Ma32f7f222012-12-10 14:06:01 -05001409 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001410 if (IS_ERR(bh))
1411 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001412 inode = NULL;
1413 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001414 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001415 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001416 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001417 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001418 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001419 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001420 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001421 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1422 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001423 return ERR_PTR(-EIO);
1424 }
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001425 inode = ext4_iget_normal(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001426 if (inode == ERR_PTR(-ESTALE)) {
1427 EXT4_ERROR_INODE(dir,
1428 "deleted inode referenced: %u",
1429 ino);
1430 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001431 }
Theodore Ts'od9cdc9032015-04-12 00:55:08 -04001432 if (!IS_ERR(inode) && ext4_encrypted_inode(dir) &&
1433 (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1434 S_ISLNK(inode->i_mode)) &&
1435 !ext4_is_child_context_consistent_with_parent(dir,
1436 inode)) {
1437 iput(inode);
1438 ext4_warning(inode->i_sb,
1439 "Inconsistent encryption contexts: %lu/%lu\n",
1440 (unsigned long) dir->i_ino,
1441 (unsigned long) inode->i_ino);
1442 return ERR_PTR(-EPERM);
1443 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 }
1445 return d_splice_alias(inode, dentry);
1446}
1447
1448
Mingming Cao617ba132006-10-11 01:20:53 -07001449struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001450{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001451 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001452 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001453 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001454 struct buffer_head *bh;
1455
Tao Ma32f7f222012-12-10 14:06:01 -05001456 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04001457 if (IS_ERR(bh))
1458 return (struct dentry *) bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001459 if (!bh)
1460 return ERR_PTR(-ENOENT);
1461 ino = le32_to_cpu(de->inode);
1462 brelse(bh);
1463
Mingming Cao617ba132006-10-11 01:20:53 -07001464 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001465 EXT4_ERROR_INODE(child->d_inode,
1466 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001467 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001468 }
1469
Theodore Ts'of4bb2982014-10-05 22:56:00 -04001470 return d_obtain_alias(ext4_iget_normal(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001471}
1472
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001473/*
1474 * Move count entries from end of map between two memory locations.
1475 * Returns pointer to last entry moved.
1476 */
Mingming Cao617ba132006-10-11 01:20:53 -07001477static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001478dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1479 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001480{
1481 unsigned rec_len = 0;
1482
1483 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001484 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001485 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001486 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001488 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001489 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001490 de->inode = 0;
1491 map++;
1492 to += rec_len;
1493 }
Mingming Cao617ba132006-10-11 01:20:53 -07001494 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001495}
1496
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001497/*
1498 * Compact each dir entry in the range to the minimal rec_len.
1499 * Returns pointer to last entry in range.
1500 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001501static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001502{
Mingming Cao617ba132006-10-11 01:20:53 -07001503 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001504 unsigned rec_len = 0;
1505
1506 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001507 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001508 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001509 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001510 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511 if (de > to)
1512 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001513 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001514 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001515 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516 }
1517 de = next;
1518 }
1519 return prev;
1520}
1521
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001522/*
1523 * Split a full leaf block to make room for a new dir entry.
1524 * Allocate a new block, and move entries so that they are approx. equally full.
1525 * Returns pointer to de in block into which the new entry will be inserted.
1526 */
Mingming Cao617ba132006-10-11 01:20:53 -07001527static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001528 struct buffer_head **bh,struct dx_frame *frame,
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001529 struct dx_hash_info *hinfo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001530{
1531 unsigned blocksize = dir->i_sb->s_blocksize;
1532 unsigned count, continued;
1533 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001534 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001535 u32 hash2;
1536 struct dx_map_entry *map;
1537 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001538 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001539 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001540 struct ext4_dir_entry_tail *t;
1541 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001542 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001543
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001544 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001545 csum_size = sizeof(struct ext4_dir_entry_tail);
1546
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001547 bh2 = ext4_append(handle, dir, &newblock);
1548 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001549 brelse(*bh);
1550 *bh = NULL;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001551 return (struct ext4_dir_entry_2 *) bh2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001552 }
1553
1554 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001555 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001556 if (err)
1557 goto journal_error;
1558
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001560 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001561 if (err)
1562 goto journal_error;
1563
1564 data2 = bh2->b_data;
1565
1566 /* create map in the end of data2 block */
1567 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001568 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001569 blocksize, hinfo, map);
1570 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001571 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001572 /* Split the existing block in the middle, size-wise */
1573 size = 0;
1574 move = 0;
1575 for (i = count-1; i >= 0; i--) {
1576 /* is more than half of this entry in 2nd half of the block? */
1577 if (size + map[i].size/2 > blocksize/2)
1578 break;
1579 size += map[i].size;
1580 move++;
1581 }
1582 /* map index at which we will split */
1583 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584 hash2 = map[split].hash;
1585 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001586 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1587 (unsigned long)dx_get_block(frame->at),
1588 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001589
1590 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001591 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001592 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001593 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1594 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001595 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001596 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1597 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001598 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001599 if (csum_size) {
1600 t = EXT4_DIRENT_TAIL(data2, blocksize);
1601 initialize_dirent_tail(t, blocksize);
1602
1603 t = EXT4_DIRENT_TAIL(data1, blocksize);
1604 initialize_dirent_tail(t, blocksize);
1605 }
1606
Mingming Cao617ba132006-10-11 01:20:53 -07001607 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1608 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001609
1610 /* Which block gets the new entry? */
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001611 if (hinfo->hash >= hash2) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001612 swap(*bh, bh2);
1613 de = de2;
1614 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001615 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001616 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001617 if (err)
1618 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001619 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001620 if (err)
1621 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001622 brelse(bh2);
1623 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001624 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001625
1626journal_error:
1627 brelse(*bh);
1628 brelse(bh2);
1629 *bh = NULL;
1630 ext4_std_error(dir->i_sb, err);
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001631 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001632}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001633
Tao Ma978fef92012-12-10 14:05:58 -05001634int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1635 struct buffer_head *bh,
1636 void *buf, int buf_size,
1637 const char *name, int namelen,
1638 struct ext4_dir_entry_2 **dest_de)
1639{
1640 struct ext4_dir_entry_2 *de;
1641 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1642 int nlen, rlen;
1643 unsigned int offset = 0;
1644 char *top;
1645
1646 de = (struct ext4_dir_entry_2 *)buf;
1647 top = buf + buf_size - reclen;
1648 while ((char *) de <= top) {
1649 if (ext4_check_dir_entry(dir, NULL, de, bh,
1650 buf, buf_size, offset))
1651 return -EIO;
1652 if (ext4_match(namelen, name, de))
1653 return -EEXIST;
1654 nlen = EXT4_DIR_REC_LEN(de->name_len);
1655 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1656 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1657 break;
1658 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1659 offset += rlen;
1660 }
1661 if ((char *) de > top)
1662 return -ENOSPC;
1663
1664 *dest_de = de;
1665 return 0;
1666}
1667
1668void ext4_insert_dentry(struct inode *inode,
1669 struct ext4_dir_entry_2 *de,
1670 int buf_size,
1671 const char *name, int namelen)
1672{
1673
1674 int nlen, rlen;
1675
1676 nlen = EXT4_DIR_REC_LEN(de->name_len);
1677 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1678 if (de->inode) {
1679 struct ext4_dir_entry_2 *de1 =
1680 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1681 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1682 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1683 de = de1;
1684 }
1685 de->file_type = EXT4_FT_UNKNOWN;
1686 de->inode = cpu_to_le32(inode->i_ino);
1687 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1688 de->name_len = namelen;
1689 memcpy(de->name, name, namelen);
1690}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001691/*
1692 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1693 * it points to a directory entry which is guaranteed to be large
1694 * enough for new directory entry. If de is NULL, then
1695 * add_dirent_to_buf will attempt search the directory block for
1696 * space. It will return -ENOSPC if no space is available, and -EIO
1697 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001698 */
1699static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001700 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001701 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001702{
1703 struct inode *dir = dentry->d_parent->d_inode;
1704 const char *name = dentry->d_name.name;
1705 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001706 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001707 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001708 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001709
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001710 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001711 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001712
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001713 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001714 err = ext4_find_dest_de(dir, inode,
1715 bh, bh->b_data, blocksize - csum_size,
1716 name, namelen, &de);
1717 if (err)
1718 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001719 }
1720 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001721 err = ext4_journal_get_write_access(handle, 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 err;
1725 }
1726
1727 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001728 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1729
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001730 /*
1731 * XXX shouldn't update any times until successful
1732 * completion of syscall, but too many callers depend
1733 * on this.
1734 *
1735 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001736 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001737 * recovery deletes the inode, so the worst that can
1738 * happen is that the times are slightly out of date
1739 * and/or different from the directory change time.
1740 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001741 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001742 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001743 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001744 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001745 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001746 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001748 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001749 return 0;
1750}
1751
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001752/*
1753 * This converts a one block unindexed directory to a 3 block indexed
1754 * directory, and adds the dentry to the indexed directory.
1755 */
1756static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1757 struct inode *inode, struct buffer_head *bh)
1758{
1759 struct inode *dir = dentry->d_parent->d_inode;
1760 const char *name = dentry->d_name.name;
1761 int namelen = dentry->d_name.len;
1762 struct buffer_head *bh2;
1763 struct dx_root *root;
1764 struct dx_frame frames[2], *frame;
1765 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001766 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001767 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001768 char *data1, *top;
1769 unsigned len;
1770 int retval;
1771 unsigned blocksize;
1772 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001773 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001774 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001775 int csum_size = 0;
1776
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001777 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001778 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001779
1780 blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001781 dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
liang xie5d601252014-05-12 22:06:43 -04001782 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001783 retval = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001784 if (retval) {
Mingming Cao617ba132006-10-11 01:20:53 -07001785 ext4_std_error(dir->i_sb, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001786 brelse(bh);
1787 return retval;
1788 }
1789 root = (struct dx_root *) bh->b_data;
1790
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001791 /* The 0th block becomes the root, move the dirents out */
1792 fde = &root->dotdot;
1793 de = (struct ext4_dir_entry_2 *)((char *)fde +
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001794 ext4_rec_len_from_disk(fde->rec_len, blocksize));
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001795 if ((char *) de >= (((char *) root) + blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001796 EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001797 brelse(bh);
1798 return -EIO;
1799 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001800 len = ((char *) root) + (blocksize - csum_size) - (char *) de;
Theodore Ts'oe6b8bc02009-01-16 11:13:40 -05001801
1802 /* Allocate new block for the 0th block's dirents */
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001803 bh2 = ext4_append(handle, dir, &block);
1804 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001805 brelse(bh);
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001806 return PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001807 }
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001808 ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001809 data1 = bh2->b_data;
1810
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811 memcpy (data1, de, len);
Mingming Cao617ba132006-10-11 01:20:53 -07001812 de = (struct ext4_dir_entry_2 *) data1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001813 top = data1 + len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001814 while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001815 de = de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001816 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1817 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001818 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001819
1820 if (csum_size) {
1821 t = EXT4_DIRENT_TAIL(data1, blocksize);
1822 initialize_dirent_tail(t, blocksize);
1823 }
1824
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001825 /* Initialize the root; the dot dirents already exist */
Mingming Cao617ba132006-10-11 01:20:53 -07001826 de = (struct ext4_dir_entry_2 *) (&root->dotdot);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001827 de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1828 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001829 memset (&root->info, 0, sizeof(root->info));
1830 root->info.info_length = sizeof(root->info);
Mingming Cao617ba132006-10-11 01:20:53 -07001831 root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001832 entries = root->entries;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001833 dx_set_block(entries, 1);
1834 dx_set_count(entries, 1);
1835 dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001836
1837 /* Initialize as for dx_probe */
1838 hinfo.hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04001839 if (hinfo.hash_version <= DX_HASH_TEA)
1840 hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -07001841 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1842 ext4fs_dirhash(name, namelen, &hinfo);
Jan Kara6050d472014-10-30 10:53:17 -04001843 memset(frames, 0, sizeof(frames));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001844 frame = frames;
1845 frame->entries = entries;
1846 frame->at = entries;
1847 frame->bh = bh;
1848 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001849
Jan Kara6050d472014-10-30 10:53:17 -04001850 retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
1851 if (retval)
1852 goto out_frames;
1853 retval = ext4_handle_dirty_dirent_node(handle, dir, bh);
1854 if (retval)
1855 goto out_frames;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001856
Theodore Ts'of8b3b592014-08-29 20:52:18 -04001857 de = do_split(handle,dir, &bh, frame, &hinfo);
1858 if (IS_ERR(de)) {
Jan Kara6050d472014-10-30 10:53:17 -04001859 retval = PTR_ERR(de);
1860 goto out_frames;
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001861 }
1862 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001863
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001864 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1865 brelse(bh);
1866 return retval;
Jan Kara6050d472014-10-30 10:53:17 -04001867out_frames:
1868 /*
1869 * Even if the block split failed, we have to properly write
1870 * out all the changes we did so far. Otherwise we can end up
1871 * with corrupted filesystem.
1872 */
1873 ext4_mark_inode_dirty(handle, dir);
1874 dx_release(frames);
1875 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001876}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001877
1878/*
Mingming Cao617ba132006-10-11 01:20:53 -07001879 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001880 *
1881 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001882 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001883 *
1884 * NOTE!! The inode part of 'de' is left at 0 - which means you
1885 * may not sleep between calling this and putting something into
1886 * the entry, as someone else might have used it while you slept.
1887 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001888static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1889 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001890{
1891 struct inode *dir = dentry->d_parent->d_inode;
Lukas Czernere12fb972015-04-03 10:46:58 -04001892 struct buffer_head *bh = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001893 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001894 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001895 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001896 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001897 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001898 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001899 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001900 int csum_size = 0;
1901
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001902 if (ext4_has_metadata_csum(inode->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001903 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001904
1905 sb = dir->i_sb;
1906 blocksize = sb->s_blocksize;
1907 if (!dentry->d_name.len)
1908 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001909
1910 if (ext4_has_inline_data(dir)) {
1911 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1912 if (retval < 0)
1913 return retval;
1914 if (retval == 1) {
1915 retval = 0;
Lukas Czernere12fb972015-04-03 10:46:58 -04001916 goto out;
Tao Ma3c47d542012-12-10 14:05:59 -05001917 }
1918 }
1919
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001920 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001921 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001922 if (!retval || (retval != ERR_BAD_DX_DIR))
Lukas Czernere12fb972015-04-03 10:46:58 -04001923 goto out;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001924 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001925 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001926 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001927 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001928 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001929 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001930 bh = ext4_read_dirblock(dir, block, DIRENT);
1931 if (IS_ERR(bh))
1932 return PTR_ERR(bh);
1933
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001934 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Lukas Czernere12fb972015-04-03 10:46:58 -04001935 if (retval != -ENOSPC)
1936 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001937
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001938 if (blocks == 1 && !dx_fallback &&
Lukas Czernere12fb972015-04-03 10:46:58 -04001939 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX)) {
1940 retval = make_indexed_dir(handle, dentry, inode, bh);
1941 bh = NULL; /* make_indexed_dir releases bh */
1942 goto out;
1943 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001944 brelse(bh);
1945 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001946 bh = ext4_append(handle, dir, &block);
1947 if (IS_ERR(bh))
1948 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001949 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001950 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001951 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1952
1953 if (csum_size) {
1954 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1955 initialize_dirent_tail(t, blocksize);
1956 }
1957
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001958 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
Lukas Czernere12fb972015-04-03 10:46:58 -04001959out:
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001960 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001961 if (retval == 0)
1962 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001963 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001964}
1965
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001966/*
1967 * Returns 0 for success, or a negative error value
1968 */
Mingming Cao617ba132006-10-11 01:20:53 -07001969static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 struct inode *inode)
1971{
1972 struct dx_frame frames[2], *frame;
1973 struct dx_entry *entries, *at;
1974 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001975 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001976 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001977 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001978 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979 int err;
1980
Theodore Ts'odd73b5d2014-08-29 20:52:17 -04001981 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames);
1982 if (IS_ERR(frame))
1983 return PTR_ERR(frame);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001984 entries = frame->entries;
1985 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001986 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1987 if (IS_ERR(bh)) {
1988 err = PTR_ERR(bh);
1989 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001990 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001991 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001992
1993 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001994 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001995 if (err)
1996 goto journal_error;
1997
1998 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001999 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002000 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002001
2002 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002003 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002004 dx_get_count(entries), dx_get_limit(entries)));
2005 /* Need to split index? */
2006 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05002007 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002008 unsigned icount = dx_get_count(entries);
2009 int levels = frame - frames;
2010 struct dx_entry *entries2;
2011 struct dx_node *node2;
2012 struct buffer_head *bh2;
2013
2014 if (levels && (dx_get_count(frames->entries) ==
2015 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002016 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002017 err = -ENOSPC;
2018 goto cleanup;
2019 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002020 bh2 = ext4_append(handle, dir, &newblock);
2021 if (IS_ERR(bh2)) {
2022 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002023 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002024 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002025 node2 = (struct dx_node *)(bh2->b_data);
2026 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04002027 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002028 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2029 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002031 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002032 if (err)
2033 goto journal_error;
2034 if (levels) {
2035 unsigned icount1 = icount/2, icount2 = icount - icount1;
2036 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002037 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2038 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002039
2040 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002041 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002042 frames[0].bh);
2043 if (err)
2044 goto journal_error;
2045
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002046 memcpy((char *) entries2, (char *) (entries + icount1),
2047 icount2 * sizeof(struct dx_entry));
2048 dx_set_count(entries, icount1);
2049 dx_set_count(entries2, icount2);
2050 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002051
2052 /* Which index block gets the new entry? */
2053 if (at - entries >= icount1) {
2054 frame->at = at = at - entries - icount1 + entries2;
2055 frame->entries = entries = entries2;
2056 swap(frame->bh, bh2);
2057 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002058 dx_insert_block(frames + 0, hash2, newblock);
2059 dxtrace(dx_show_index("node", frames[1].entries));
2060 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002061 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002062 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002063 if (err)
2064 goto journal_error;
2065 brelse (bh2);
2066 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002067 dxtrace(printk(KERN_DEBUG
2068 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002069 memcpy((char *) entries2, (char *) entries,
2070 icount * sizeof(struct dx_entry));
2071 dx_set_limit(entries2, dx_node_limit(dir));
2072
2073 /* Set up root */
2074 dx_set_count(entries, 1);
2075 dx_set_block(entries + 0, newblock);
2076 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2077
2078 /* Add new access path frame */
2079 frame = frames + 1;
2080 frame->at = at = at - entries + entries2;
2081 frame->entries = entries = entries2;
2082 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002083 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002084 frame->bh);
2085 if (err)
2086 goto journal_error;
2087 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002088 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002089 if (err) {
2090 ext4_std_error(inode->i_sb, err);
2091 goto cleanup;
2092 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002093 }
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002094 de = do_split(handle, dir, &bh, frame, &hinfo);
2095 if (IS_ERR(de)) {
2096 err = PTR_ERR(de);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002097 goto cleanup;
Theodore Ts'of8b3b592014-08-29 20:52:18 -04002098 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002099 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002100 goto cleanup;
2101
2102journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002103 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002104cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002105 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002106 dx_release(frames);
2107 return err;
2108}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002109
2110/*
Tao Ma05019a92012-12-10 14:06:00 -05002111 * ext4_generic_delete_entry deletes a directory entry by merging it
2112 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002113 */
Tao Ma05019a92012-12-10 14:06:00 -05002114int ext4_generic_delete_entry(handle_t *handle,
2115 struct inode *dir,
2116 struct ext4_dir_entry_2 *de_del,
2117 struct buffer_head *bh,
2118 void *entry_buf,
2119 int buf_size,
2120 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002121{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002122 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002123 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002124 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002125
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002126 i = 0;
2127 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002128 de = (struct ext4_dir_entry_2 *)entry_buf;
2129 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002130 if (ext4_check_dir_entry(dir, NULL, de, bh,
2131 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002132 return -EIO;
2133 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002134 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002135 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002136 ext4_rec_len_from_disk(pde->rec_len,
2137 blocksize) +
2138 ext4_rec_len_from_disk(de->rec_len,
2139 blocksize),
2140 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002141 else
2142 de->inode = 0;
2143 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002144 return 0;
2145 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002146 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002147 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002148 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002149 }
2150 return -ENOENT;
2151}
2152
Tao Ma05019a92012-12-10 14:06:00 -05002153static int ext4_delete_entry(handle_t *handle,
2154 struct inode *dir,
2155 struct ext4_dir_entry_2 *de_del,
2156 struct buffer_head *bh)
2157{
2158 int err, csum_size = 0;
2159
Tao Ma9f40fe52012-12-10 14:06:00 -05002160 if (ext4_has_inline_data(dir)) {
2161 int has_inline_data = 1;
2162 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2163 &has_inline_data);
2164 if (has_inline_data)
2165 return err;
2166 }
2167
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002168 if (ext4_has_metadata_csum(dir->i_sb))
Tao Ma05019a92012-12-10 14:06:00 -05002169 csum_size = sizeof(struct ext4_dir_entry_tail);
2170
2171 BUFFER_TRACE(bh, "get_write_access");
2172 err = ext4_journal_get_write_access(handle, bh);
2173 if (unlikely(err))
2174 goto out;
2175
2176 err = ext4_generic_delete_entry(handle, dir, de_del,
2177 bh, bh->b_data,
2178 dir->i_sb->s_blocksize, csum_size);
2179 if (err)
2180 goto out;
2181
2182 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2183 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2184 if (unlikely(err))
2185 goto out;
2186
2187 return 0;
2188out:
2189 if (err != -ENOENT)
2190 ext4_std_error(dir->i_sb, err);
2191 return err;
2192}
2193
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002194/*
2195 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2196 * since this indicates that nlinks count was previously 1.
2197 */
2198static void ext4_inc_count(handle_t *handle, struct inode *inode)
2199{
2200 inc_nlink(inode);
2201 if (is_dx(inode) && inode->i_nlink > 1) {
2202 /* limit is 16-bit i_links_count */
2203 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002204 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002205 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2206 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2207 }
2208 }
2209}
2210
2211/*
2212 * If a directory had nlink == 1, then we should let it be 1. This indicates
2213 * directory has >EXT4_LINK_MAX subdirs.
2214 */
2215static void ext4_dec_count(handle_t *handle, struct inode *inode)
2216{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002217 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2218 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002219}
2220
2221
Mingming Cao617ba132006-10-11 01:20:53 -07002222static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002223 struct dentry *dentry, struct inode *inode)
2224{
Mingming Cao617ba132006-10-11 01:20:53 -07002225 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002226 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002227 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002228 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002229 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002230 return 0;
2231 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002232 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002233 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002234 iput(inode);
2235 return err;
2236}
2237
2238/*
2239 * By the time this is called, we already have created
2240 * the directory cache entry for the new file, but it
2241 * is so far negative - it has no inode.
2242 *
2243 * If the create succeeds, we fill in the inode information
2244 * with d_instantiate().
2245 */
Al Viro4acdaf22011-07-26 01:42:34 -04002246static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002247 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002248{
2249 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002250 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002251 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002252
Christoph Hellwig871a2932010-03-03 09:05:07 -05002253 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002254
Theodore Ts'o11395752013-02-09 16:27:09 -05002255 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002256 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002258 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2259 NULL, EXT4_HT_DIR, credits);
2260 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261 err = PTR_ERR(inode);
2262 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002263 inode->i_op = &ext4_file_inode_operations;
Ross Zwisler923ae0f2015-02-16 15:59:38 -08002264 if (test_opt(inode->i_sb, DAX))
2265 inode->i_fop = &ext4_dax_file_operations;
2266 else
2267 inode->i_fop = &ext4_file_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002268 ext4_set_aops(inode);
Michael Halcrowdde680c2015-04-12 00:55:09 -04002269 err = 0;
2270#ifdef CONFIG_EXT4_FS_ENCRYPTION
2271 if (!err && ext4_encrypted_inode(dir)) {
2272 err = ext4_inherit_context(dir, inode);
2273 if (err) {
2274 clear_nlink(inode);
2275 unlock_new_inode(inode);
2276 iput(inode);
2277 }
2278 }
2279#endif
2280 if (!err)
2281 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002282 if (!err && IS_DIRSYNC(dir))
2283 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002284 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002285 if (handle)
2286 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002287 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002288 goto retry;
2289 return err;
2290}
2291
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002292static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002293 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002294{
2295 handle_t *handle;
2296 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002297 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002298
2299 if (!new_valid_dev(rdev))
2300 return -EINVAL;
2301
Christoph Hellwig871a2932010-03-03 09:05:07 -05002302 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002303
Theodore Ts'o11395752013-02-09 16:27:09 -05002304 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002305 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002306retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002307 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2308 NULL, EXT4_HT_DIR, credits);
2309 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002310 err = PTR_ERR(inode);
2311 if (!IS_ERR(inode)) {
2312 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002313 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002314 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002315 if (!err && IS_DIRSYNC(dir))
2316 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002317 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002318 if (handle)
2319 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002320 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002321 goto retry;
2322 return err;
2323}
2324
Al Viroaf51a2a2013-06-29 13:23:08 +04002325static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2326{
2327 handle_t *handle;
2328 struct inode *inode;
2329 int err, retries = 0;
2330
2331 dquot_initialize(dir);
2332
2333retry:
2334 inode = ext4_new_inode_start_handle(dir, mode,
2335 NULL, 0, NULL,
2336 EXT4_HT_DIR,
2337 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2338 4 + EXT4_XATTR_TRANS_BLOCKS);
2339 handle = ext4_journal_current_handle();
2340 err = PTR_ERR(inode);
2341 if (!IS_ERR(inode)) {
2342 inode->i_op = &ext4_file_inode_operations;
Ross Zwisler923ae0f2015-02-16 15:59:38 -08002343 if (test_opt(inode->i_sb, DAX))
2344 inode->i_fop = &ext4_dax_file_operations;
2345 else
2346 inode->i_fop = &ext4_file_operations;
Al Viroaf51a2a2013-06-29 13:23:08 +04002347 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002348 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002349 err = ext4_orphan_add(handle, inode);
2350 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002351 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002352 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002353 unlock_new_inode(inode);
2354 }
2355 if (handle)
2356 ext4_journal_stop(handle);
2357 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2358 goto retry;
2359 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002360err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002361 ext4_journal_stop(handle);
2362 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002363 return err;
2364}
2365
Tao Maa774f9c2012-12-10 14:05:57 -05002366struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2367 struct ext4_dir_entry_2 *de,
2368 int blocksize, int csum_size,
2369 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002370{
Tao Maa774f9c2012-12-10 14:05:57 -05002371 de->inode = cpu_to_le32(inode->i_ino);
2372 de->name_len = 1;
2373 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2374 blocksize);
2375 strcpy(de->name, ".");
2376 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2377
2378 de = ext4_next_entry(de, blocksize);
2379 de->inode = cpu_to_le32(parent_ino);
2380 de->name_len = 2;
2381 if (!dotdot_real_len)
2382 de->rec_len = ext4_rec_len_to_disk(blocksize -
2383 (csum_size + EXT4_DIR_REC_LEN(1)),
2384 blocksize);
2385 else
2386 de->rec_len = ext4_rec_len_to_disk(
2387 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2388 strcpy(de->name, "..");
2389 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2390
2391 return ext4_next_entry(de, blocksize);
2392}
2393
2394static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2395 struct inode *inode)
2396{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002397 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002398 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002399 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002400 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002401 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002402 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002403 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002404
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04002405 if (ext4_has_metadata_csum(dir->i_sb))
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002406 csum_size = sizeof(struct ext4_dir_entry_tail);
2407
Tao Ma3c47d542012-12-10 14:05:59 -05002408 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2409 err = ext4_try_create_inline_dir(handle, dir, inode);
2410 if (err < 0 && err != -ENOSPC)
2411 goto out;
2412 if (!err)
2413 goto out;
2414 }
2415
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002416 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002417 dir_block = ext4_append(handle, inode, &block);
2418 if (IS_ERR(dir_block))
2419 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002420 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2421 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2422 set_nlink(inode, 2);
2423 if (csum_size) {
2424 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2425 initialize_dirent_tail(t, blocksize);
2426 }
2427
2428 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2429 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2430 if (err)
2431 goto out;
2432 set_buffer_verified(dir_block);
2433out:
2434 brelse(dir_block);
2435 return err;
2436}
2437
2438static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2439{
2440 handle_t *handle;
2441 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002442 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002443
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002444 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002445 return -EMLINK;
2446
Christoph Hellwig871a2932010-03-03 09:05:07 -05002447 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002448
Theodore Ts'o11395752013-02-09 16:27:09 -05002449 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002450 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002452 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2453 &dentry->d_name,
2454 0, NULL, EXT4_HT_DIR, credits);
2455 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002456 err = PTR_ERR(inode);
2457 if (IS_ERR(inode))
2458 goto out_stop;
2459
Mingming Cao617ba132006-10-11 01:20:53 -07002460 inode->i_op = &ext4_dir_inode_operations;
2461 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002462 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002463 if (err)
2464 goto out_clear_inode;
Michael Halcrowdde680c2015-04-12 00:55:09 -04002465#ifdef CONFIG_EXT4_FS_ENCRYPTION
2466 if (ext4_encrypted_inode(dir)) {
2467 err = ext4_inherit_context(dir, inode);
2468 if (err)
2469 goto out_clear_inode;
2470 }
2471#endif
Namhyung Kimdabd9912011-01-10 12:11:16 -05002472 err = ext4_mark_inode_dirty(handle, inode);
2473 if (!err)
2474 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002476out_clear_inode:
2477 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002478 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002479 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002480 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002481 goto out_stop;
2482 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002483 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002484 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002485 err = ext4_mark_inode_dirty(handle, dir);
2486 if (err)
2487 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002488 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002489 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002490 if (IS_DIRSYNC(dir))
2491 ext4_handle_sync(handle);
2492
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002493out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002494 if (handle)
2495 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002496 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002497 goto retry;
2498 return err;
2499}
2500
2501/*
2502 * routine to check that the specified directory is empty (for rmdir)
2503 */
Michael Halcrowe875a2d2015-04-11 07:46:49 -04002504int ext4_empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002506 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002507 struct buffer_head *bh;
2508 struct ext4_dir_entry_2 *de, *de1;
2509 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002510 int err = 0;
2511
Tao Ma61f86632012-12-10 14:06:01 -05002512 if (ext4_has_inline_data(inode)) {
2513 int has_inline_data = 1;
2514
2515 err = empty_inline_dir(inode, &has_inline_data);
2516 if (has_inline_data)
2517 return err;
2518 }
2519
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002520 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002521 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2522 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002523 return 1;
2524 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002525 bh = ext4_read_dirblock(inode, 0, EITHER);
2526 if (IS_ERR(bh))
2527 return 1;
2528
Mingming Cao617ba132006-10-11 01:20:53 -07002529 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002530 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002531 if (le32_to_cpu(de->inode) != inode->i_ino ||
2532 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002533 strcmp(".", de->name) ||
2534 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002535 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002536 "bad directory (dir #%lu) - no `.' or `..'",
2537 inode->i_ino);
2538 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002539 return 1;
2540 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002541 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2542 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2543 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002544 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002545 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002546 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002547 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002548 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002549 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002550 bh = ext4_read_dirblock(inode, lblock, EITHER);
2551 if (IS_ERR(bh))
2552 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002553 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002554 }
Tao Ma226ba972012-12-10 14:05:58 -05002555 if (ext4_check_dir_entry(inode, NULL, de, bh,
2556 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002557 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002558 sb->s_blocksize);
2559 offset = (offset | (sb->s_blocksize - 1)) + 1;
2560 continue;
2561 }
2562 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002563 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002564 return 0;
2565 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002566 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2567 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002568 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002569 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002570 return 1;
2571}
2572
Jan Karad745a8c2014-05-26 11:56:53 -04002573/*
2574 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002575 * such inodes, starting at the superblock, in case we crash before the
2576 * file is closed/deleted, or in case the inode truncate spans multiple
2577 * transactions and the last transaction is not recovered after a crash.
2578 *
2579 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002580 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002581 *
2582 * Orphan list manipulation functions must be called under i_mutex unless
2583 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002584 */
Mingming Cao617ba132006-10-11 01:20:53 -07002585int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002586{
2587 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002588 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002589 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002590 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002591 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002592
Theodore Ts'oe2bfb082014-10-05 22:47:07 -04002593 if (!sbi->s_journal || is_bad_inode(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05002594 return 0;
2595
Jan Karad745a8c2014-05-26 11:56:53 -04002596 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2597 !mutex_is_locked(&inode->i_mutex));
2598 /*
2599 * Exit early if inode already is on orphan list. This is a big speedup
2600 * since we don't have to contend on the global s_orphan_lock.
2601 */
Mingming Cao617ba132006-10-11 01:20:53 -07002602 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002603 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002604
Lukas Czernerafb86172011-07-11 18:47:04 -04002605 /*
2606 * Orphan handling is only valid for files with data blocks
2607 * being truncated, or files being unlinked. Note that we either
2608 * hold i_mutex, or the inode can not be referenced from outside,
2609 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002610 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002611 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2612 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002613
Jan Karacd2c0802014-05-26 11:39:17 -04002614 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2615 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002616 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002617 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002618
Mingming Cao617ba132006-10-11 01:20:53 -07002619 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002620 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002621 goto out;
2622
2623 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002624 /*
2625 * Due to previous errors inode may be already a part of on-disk
2626 * orphan list. If so skip on-disk list modification.
2627 */
Jan Karad745a8c2014-05-26 11:56:53 -04002628 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2629 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2630 /* Insert this inode at the head of the on-disk orphan list */
2631 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2632 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2633 dirty = true;
2634 }
2635 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2636 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002637
Jan Karad745a8c2014-05-26 11:56:53 -04002638 if (dirty) {
2639 err = ext4_handle_dirty_super(handle, sb);
2640 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2641 if (!err)
2642 err = rc;
2643 if (err) {
2644 /*
2645 * We have to remove inode from in-memory list if
2646 * addition to on disk orphan list failed. Stray orphan
2647 * list entries can cause panics at unmount time.
2648 */
2649 mutex_lock(&sbi->s_orphan_lock);
2650 list_del(&EXT4_I(inode)->i_orphan);
2651 mutex_unlock(&sbi->s_orphan_lock);
2652 }
2653 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2655 jbd_debug(4, "orphan inode %lu will point to %d\n",
2656 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002657out:
Jan Karacd2c0802014-05-26 11:39:17 -04002658 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002659 return err;
2660}
2661
2662/*
Mingming Cao617ba132006-10-11 01:20:53 -07002663 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002664 * of such inodes stored on disk, because it is finally being cleaned up.
2665 */
Mingming Cao617ba132006-10-11 01:20:53 -07002666int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002667{
2668 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002669 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002670 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002671 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002672 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002673 int err = 0;
2674
Jan Karacd2c0802014-05-26 11:39:17 -04002675 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002676 return 0;
2677
Jan Karad745a8c2014-05-26 11:56:53 -04002678 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2679 !mutex_is_locked(&inode->i_mutex));
2680 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002681 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002682 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002683
Jan Karad745a8c2014-05-26 11:56:53 -04002684 if (handle) {
2685 /* Grab inode buffer early before taking global s_orphan_lock */
2686 err = ext4_reserve_inode_write(handle, inode, &iloc);
2687 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688
Jan Karad745a8c2014-05-26 11:56:53 -04002689 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2691
Jan Karad745a8c2014-05-26 11:56:53 -04002692 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002693 list_del_init(&ei->i_orphan);
2694
2695 /* If we're on an error path, we may not have a valid
2696 * transaction handle with which to update the orphan list on
2697 * disk, but we still need to remove the inode from the linked
2698 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002699 if (!handle || err) {
2700 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002702 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002703
Jan Karad745a8c2014-05-26 11:56:53 -04002704 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002705 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002706 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002707 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002708 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002709 if (err) {
2710 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002711 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002712 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002713 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002714 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002715 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002716 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002717 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002718 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002719 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002720
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002721 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002722 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002723 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002724 if (err) {
2725 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002726 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002727 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002728 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002729 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002730 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002731 }
2732 if (err)
2733 goto out_brelse;
2734 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002735 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002736out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002737 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002738 return err;
2739
2740out_brelse:
2741 brelse(iloc.bh);
2742 goto out_err;
2743}
2744
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002745static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002746{
2747 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002748 struct inode *inode;
2749 struct buffer_head *bh;
2750 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002751 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002752
2753 /* Initialize quotas before so that eventual writes go in
2754 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002755 dquot_initialize(dir);
2756 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002757
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002758 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002759 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002760 if (IS_ERR(bh))
2761 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002762 if (!bh)
2763 goto end_rmdir;
2764
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002765 inode = dentry->d_inode;
2766
2767 retval = -EIO;
2768 if (le32_to_cpu(de->inode) != inode->i_ino)
2769 goto end_rmdir;
2770
2771 retval = -ENOTEMPTY;
Michael Halcrowe875a2d2015-04-11 07:46:49 -04002772 if (!ext4_empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002773 goto end_rmdir;
2774
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002775 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002776 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002777 if (IS_ERR(handle)) {
2778 retval = PTR_ERR(handle);
2779 handle = NULL;
2780 goto end_rmdir;
2781 }
2782
2783 if (IS_DIRSYNC(dir))
2784 ext4_handle_sync(handle);
2785
Mingming Cao617ba132006-10-11 01:20:53 -07002786 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002787 if (retval)
2788 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002789 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002790 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002791 "empty directory has too many links (%d)",
2792 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002793 inode->i_version++;
2794 clear_nlink(inode);
2795 /* There's no need to set i_disksize: the fact that i_nlink is
2796 * zero will ensure that the right thing happens during any
2797 * recovery. */
2798 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002799 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002800 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002801 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002802 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002803 ext4_update_dx_flag(dir);
2804 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002805
2806end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002807 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002808 if (handle)
2809 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002810 return retval;
2811}
2812
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002813static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002814{
2815 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002816 struct inode *inode;
2817 struct buffer_head *bh;
2818 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002819 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002820
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002821 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002822 /* Initialize quotas before so that eventual writes go
2823 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002824 dquot_initialize(dir);
2825 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002826
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002827 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002828 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04002829 if (IS_ERR(bh))
2830 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002831 if (!bh)
2832 goto end_unlink;
2833
2834 inode = dentry->d_inode;
2835
2836 retval = -EIO;
2837 if (le32_to_cpu(de->inode) != inode->i_ino)
2838 goto end_unlink;
2839
Theodore Ts'o931b6862013-02-09 09:43:39 -05002840 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002841 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002842 if (IS_ERR(handle)) {
2843 retval = PTR_ERR(handle);
2844 handle = NULL;
2845 goto end_unlink;
2846 }
2847
2848 if (IS_DIRSYNC(dir))
2849 ext4_handle_sync(handle);
2850
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002851 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002852 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002853 "Deleting nonexistent file (%lu), %d",
2854 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002855 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002856 }
Mingming Cao617ba132006-10-11 01:20:53 -07002857 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002858 if (retval)
2859 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002860 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002861 ext4_update_dx_flag(dir);
2862 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002863 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002864 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002865 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002866 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002867 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002868
2869end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002870 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002871 if (handle)
2872 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002873 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874 return retval;
2875}
2876
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002877static int ext4_symlink(struct inode *dir,
2878 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002879{
2880 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002881 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002882 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002883 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884
2885 l = strlen(symname)+1;
2886 if (l > dir->i_sb->s_blocksize)
2887 return -ENAMETOOLONG;
2888
Christoph Hellwig871a2932010-03-03 09:05:07 -05002889 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002890
Jan Karadf5e6222011-05-03 11:12:58 -04002891 if (l > EXT4_N_BLOCKS * 4) {
2892 /*
2893 * For non-fast symlinks, we just allocate inode and put it on
2894 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002895 * group descriptor, sb, inode block, quota blocks, and
2896 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002897 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002898 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2899 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002900 } else {
2901 /*
2902 * Fast symlink. We have to add entry to directory
2903 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2904 * allocate new inode (bitmap, group descriptor, inode block,
2905 * quota blocks, sb is already counted in previous macros).
2906 */
2907 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002908 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002909 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002910retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002911 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2912 &dentry->d_name, 0, NULL,
2913 EXT4_HT_DIR, credits);
2914 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002915 err = PTR_ERR(inode);
2916 if (IS_ERR(inode))
2917 goto out_stop;
2918
Jan Karadf5e6222011-05-03 11:12:58 -04002919 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002920 inode->i_op = &ext4_symlink_inode_operations;
2921 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002923 * We cannot call page_symlink() with transaction started
2924 * because it calls into ext4_write_begin() which can wait
2925 * for transaction commit if we are running out of space
2926 * and thus we deadlock. So we have to stop transaction now
2927 * and restart it when symlink contents is written.
2928 *
2929 * To keep fs consistent in case of crash, we have to put inode
2930 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002931 */
Jan Karadf5e6222011-05-03 11:12:58 -04002932 drop_nlink(inode);
2933 err = ext4_orphan_add(handle, inode);
2934 ext4_journal_stop(handle);
2935 if (err)
2936 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002937 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002938 if (err)
2939 goto err_drop_inode;
2940 /*
2941 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2942 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2943 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002944 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002945 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2946 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2947 if (IS_ERR(handle)) {
2948 err = PTR_ERR(handle);
2949 goto err_drop_inode;
2950 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002951 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002952 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002953 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002954 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002955 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002956 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 }
2958 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002959 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002960 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002961 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002962 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963 inode->i_size = l-1;
2964 }
Mingming Cao617ba132006-10-11 01:20:53 -07002965 EXT4_I(inode)->i_disksize = inode->i_size;
2966 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002967 if (!err && IS_DIRSYNC(dir))
2968 ext4_handle_sync(handle);
2969
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002971 if (handle)
2972 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002973 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002974 goto retry;
2975 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002976err_drop_inode:
2977 unlock_new_inode(inode);
2978 iput(inode);
2979 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002980}
2981
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002982static int ext4_link(struct dentry *old_dentry,
2983 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002984{
2985 handle_t *handle;
2986 struct inode *inode = old_dentry->d_inode;
2987 int err, retries = 0;
2988
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002989 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 return -EMLINK;
Theodore Ts'od9cdc9032015-04-12 00:55:08 -04002991 if (ext4_encrypted_inode(dir) &&
2992 !ext4_is_child_context_consistent_with_parent(dir, inode))
2993 return -EPERM;
Christoph Hellwig871a2932010-03-03 09:05:07 -05002994 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002995
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002996retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002997 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2998 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002999 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003000 if (IS_ERR(handle))
3001 return PTR_ERR(handle);
3002
3003 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05003004 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003005
Kalpak Shahef7f3832007-07-18 09:15:20 -04003006 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04003007 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04003008 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003009
Al Viro6b38e842008-12-30 02:03:31 -05003010 err = ext4_add_entry(handle, dentry, inode);
3011 if (!err) {
3012 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04003013 /* this can happen only for tmpfile being
3014 * linked the first time
3015 */
3016 if (inode->i_nlink == 1)
3017 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05003018 d_instantiate(dentry, inode);
3019 } else {
3020 drop_nlink(inode);
3021 iput(inode);
3022 }
Mingming Cao617ba132006-10-11 01:20:53 -07003023 ext4_journal_stop(handle);
3024 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003025 goto retry;
3026 return err;
3027}
3028
Tao Ma32f7f222012-12-10 14:06:01 -05003029
3030/*
3031 * Try to find buffer head where contains the parent block.
3032 * It should be the inode block if it is inlined or the 1st block
3033 * if it is a normal dir.
3034 */
3035static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
3036 struct inode *inode,
3037 int *retval,
3038 struct ext4_dir_entry_2 **parent_de,
3039 int *inlined)
3040{
3041 struct buffer_head *bh;
3042
3043 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05003044 bh = ext4_read_dirblock(inode, 0, EITHER);
3045 if (IS_ERR(bh)) {
3046 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05003047 return NULL;
3048 }
3049 *parent_de = ext4_next_entry(
3050 (struct ext4_dir_entry_2 *)bh->b_data,
3051 inode->i_sb->s_blocksize);
3052 return bh;
3053 }
3054
3055 *inlined = 1;
3056 return ext4_get_first_inline_block(inode, parent_de, retval);
3057}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003058
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003059struct ext4_renament {
3060 struct inode *dir;
3061 struct dentry *dentry;
3062 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003063 bool is_dir;
3064 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003065
3066 /* entry for "dentry" */
3067 struct buffer_head *bh;
3068 struct ext4_dir_entry_2 *de;
3069 int inlined;
3070
3071 /* entry for ".." in inode if it's a directory */
3072 struct buffer_head *dir_bh;
3073 struct ext4_dir_entry_2 *parent_de;
3074 int dir_inlined;
3075};
3076
Miklos Szeredibd1af142014-04-01 17:08:44 +02003077static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3078{
3079 int retval;
3080
3081 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3082 &retval, &ent->parent_de,
3083 &ent->dir_inlined);
3084 if (!ent->dir_bh)
3085 return retval;
3086 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3087 return -EIO;
3088 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3089 return ext4_journal_get_write_access(handle, ent->dir_bh);
3090}
3091
3092static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3093 unsigned dir_ino)
3094{
3095 int retval;
3096
3097 ent->parent_de->inode = cpu_to_le32(dir_ino);
3098 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3099 if (!ent->dir_inlined) {
3100 if (is_dx(ent->inode)) {
3101 retval = ext4_handle_dirty_dx_node(handle,
3102 ent->inode,
3103 ent->dir_bh);
3104 } else {
3105 retval = ext4_handle_dirty_dirent_node(handle,
3106 ent->inode,
3107 ent->dir_bh);
3108 }
3109 } else {
3110 retval = ext4_mark_inode_dirty(handle, ent->inode);
3111 }
3112 if (retval) {
3113 ext4_std_error(ent->dir->i_sb, retval);
3114 return retval;
3115 }
3116 return 0;
3117}
3118
3119static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3120 unsigned ino, unsigned file_type)
3121{
3122 int retval;
3123
3124 BUFFER_TRACE(ent->bh, "get write access");
3125 retval = ext4_journal_get_write_access(handle, ent->bh);
3126 if (retval)
3127 return retval;
3128 ent->de->inode = cpu_to_le32(ino);
3129 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3130 EXT4_FEATURE_INCOMPAT_FILETYPE))
3131 ent->de->file_type = file_type;
3132 ent->dir->i_version++;
3133 ent->dir->i_ctime = ent->dir->i_mtime =
3134 ext4_current_time(ent->dir);
3135 ext4_mark_inode_dirty(handle, ent->dir);
3136 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3137 if (!ent->inlined) {
3138 retval = ext4_handle_dirty_dirent_node(handle,
3139 ent->dir, ent->bh);
3140 if (unlikely(retval)) {
3141 ext4_std_error(ent->dir->i_sb, retval);
3142 return retval;
3143 }
3144 }
3145 brelse(ent->bh);
3146 ent->bh = NULL;
3147
3148 return 0;
3149}
3150
3151static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3152 const struct qstr *d_name)
3153{
3154 int retval = -ENOENT;
3155 struct buffer_head *bh;
3156 struct ext4_dir_entry_2 *de;
3157
3158 bh = ext4_find_entry(dir, d_name, &de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003159 if (IS_ERR(bh))
3160 return PTR_ERR(bh);
Miklos Szeredibd1af142014-04-01 17:08:44 +02003161 if (bh) {
3162 retval = ext4_delete_entry(handle, dir, de, bh);
3163 brelse(bh);
3164 }
3165 return retval;
3166}
3167
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003168static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3169 int force_reread)
Miklos Szeredibd1af142014-04-01 17:08:44 +02003170{
3171 int retval;
3172 /*
3173 * ent->de could have moved from under us during htree split, so make
3174 * sure that we are deleting the right entry. We might also be pointing
3175 * to a stale entry in the unused part of ent->bh so just checking inum
3176 * and the name isn't enough.
3177 */
3178 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3179 ent->de->name_len != ent->dentry->d_name.len ||
3180 strncmp(ent->de->name, ent->dentry->d_name.name,
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003181 ent->de->name_len) ||
3182 force_reread) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003183 retval = ext4_find_delete_entry(handle, ent->dir,
3184 &ent->dentry->d_name);
3185 } else {
3186 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3187 if (retval == -ENOENT) {
3188 retval = ext4_find_delete_entry(handle, ent->dir,
3189 &ent->dentry->d_name);
3190 }
3191 }
3192
3193 if (retval) {
3194 ext4_warning(ent->dir->i_sb,
3195 "Deleting old file (%lu), %d, error=%d",
3196 ent->dir->i_ino, ent->dir->i_nlink, retval);
3197 }
3198}
3199
Miklos Szeredibd429982014-04-01 17:08:44 +02003200static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3201{
3202 if (ent->dir_nlink_delta) {
3203 if (ent->dir_nlink_delta == -1)
3204 ext4_dec_count(handle, ent->dir);
3205 else
3206 ext4_inc_count(handle, ent->dir);
3207 ext4_mark_inode_dirty(handle, ent->dir);
3208 }
3209}
3210
Miklos Szeredicd808de2014-10-24 00:14:37 +02003211static struct inode *ext4_whiteout_for_rename(struct ext4_renament *ent,
3212 int credits, handle_t **h)
3213{
3214 struct inode *wh;
3215 handle_t *handle;
3216 int retries = 0;
3217
3218 /*
3219 * for inode block, sb block, group summaries,
3220 * and inode bitmap
3221 */
3222 credits += (EXT4_MAXQUOTAS_TRANS_BLOCKS(ent->dir->i_sb) +
3223 EXT4_XATTR_TRANS_BLOCKS + 4);
3224retry:
3225 wh = ext4_new_inode_start_handle(ent->dir, S_IFCHR | WHITEOUT_MODE,
3226 &ent->dentry->d_name, 0, NULL,
3227 EXT4_HT_DIR, credits);
3228
3229 handle = ext4_journal_current_handle();
3230 if (IS_ERR(wh)) {
3231 if (handle)
3232 ext4_journal_stop(handle);
3233 if (PTR_ERR(wh) == -ENOSPC &&
3234 ext4_should_retry_alloc(ent->dir->i_sb, &retries))
3235 goto retry;
3236 } else {
3237 *h = handle;
3238 init_special_inode(wh, wh->i_mode, WHITEOUT_DEV);
3239 wh->i_op = &ext4_special_inode_operations;
3240 }
3241 return wh;
3242}
3243
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244/*
3245 * Anybody can rename anything with this: the permission checks are left to the
3246 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003247 *
3248 * n.b. old_{dentry,inode) refers to the source dentry/inode
3249 * while new_{dentry,inode) refers to the destination dentry/inode
3250 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003252static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredicd808de2014-10-24 00:14:37 +02003253 struct inode *new_dir, struct dentry *new_dentry,
3254 unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003255{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003256 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003257 struct ext4_renament old = {
3258 .dir = old_dir,
3259 .dentry = old_dentry,
3260 .inode = old_dentry->d_inode,
3261 };
3262 struct ext4_renament new = {
3263 .dir = new_dir,
3264 .dentry = new_dentry,
3265 .inode = new_dentry->d_inode,
3266 };
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003267 int force_reread;
Theodore Ts'o0e202702013-08-16 22:06:53 -04003268 int retval;
Miklos Szeredicd808de2014-10-24 00:14:37 +02003269 struct inode *whiteout = NULL;
3270 int credits;
3271 u8 old_file_type;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003273 dquot_initialize(old.dir);
3274 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275
3276 /* Initialize quotas before so that eventual writes go
3277 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003278 if (new.inode)
3279 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003281 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003282 if (IS_ERR(old.bh))
3283 return PTR_ERR(old.bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284 /*
3285 * Check for inode number is _not_ due to possible IO errors.
3286 * We might rmdir the source, keep it as pwd of some process
3287 * and merrily kill the link to whatever was created under the
3288 * same name. Goodbye sticky bit ;-<
3289 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003291 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003292 goto end_rename;
3293
Theodore Ts'od9cdc9032015-04-12 00:55:08 -04003294 if ((old.dir != new.dir) &&
3295 ext4_encrypted_inode(new.dir) &&
3296 !ext4_is_child_context_consistent_with_parent(new.dir,
3297 old.inode)) {
3298 retval = -EPERM;
3299 goto end_rename;
3300 }
3301
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003302 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3303 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003304 if (IS_ERR(new.bh)) {
3305 retval = PTR_ERR(new.bh);
Theodore Ts'oa9cfcd62014-09-03 09:33:00 -04003306 new.bh = NULL;
Theodore Ts'o36de9282014-08-23 17:47:19 -04003307 goto end_rename;
3308 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003309 if (new.bh) {
3310 if (!new.inode) {
3311 brelse(new.bh);
3312 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313 }
3314 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003315 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3316 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003317
Miklos Szeredicd808de2014-10-24 00:14:37 +02003318 credits = (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3319 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
3320 if (!(flags & RENAME_WHITEOUT)) {
3321 handle = ext4_journal_start(old.dir, EXT4_HT_DIR, credits);
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003322 if (IS_ERR(handle)) {
3323 retval = PTR_ERR(handle);
3324 handle = NULL;
3325 goto end_rename;
3326 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003327 } else {
3328 whiteout = ext4_whiteout_for_rename(&old, credits, &handle);
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003329 if (IS_ERR(whiteout)) {
3330 retval = PTR_ERR(whiteout);
3331 whiteout = NULL;
3332 goto end_rename;
3333 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003334 }
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003335
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003336 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003337 ext4_handle_sync(handle);
3338
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003339 if (S_ISDIR(old.inode->i_mode)) {
3340 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003341 retval = -ENOTEMPTY;
Michael Halcrowe875a2d2015-04-11 07:46:49 -04003342 if (!ext4_empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003344 } else {
3345 retval = -EMLINK;
3346 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3347 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003348 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003349 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003350 if (retval)
3351 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003352 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003353 /*
3354 * If we're renaming a file within an inline_data dir and adding or
3355 * setting the new dirent causes a conversion from inline_data to
3356 * extents/blockmap, we need to force the dirent delete code to
3357 * re-read the directory, or else we end up trying to delete a dirent
3358 * from what is now the extent tree root (or a block map).
3359 */
3360 force_reread = (new.dir->i_ino == old.dir->i_ino &&
3361 ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
Miklos Szeredicd808de2014-10-24 00:14:37 +02003362
3363 old_file_type = old.de->file_type;
3364 if (whiteout) {
3365 /*
3366 * Do this before adding a new entry, so the old entry is sure
3367 * to be still pointing to the valid old entry.
3368 */
3369 retval = ext4_setent(handle, &old, whiteout->i_ino,
3370 EXT4_FT_CHRDEV);
3371 if (retval)
3372 goto end_rename;
3373 ext4_mark_inode_dirty(handle, whiteout);
3374 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003375 if (!new.bh) {
3376 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003377 if (retval)
3378 goto end_rename;
3379 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003380 retval = ext4_setent(handle, &new,
Miklos Szeredicd808de2014-10-24 00:14:37 +02003381 old.inode->i_ino, old_file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003382 if (retval)
3383 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003384 }
Darrick J. Wongd80d4482014-08-27 18:40:09 -04003385 if (force_reread)
3386 force_reread = !ext4_test_inode_flag(new.dir,
3387 EXT4_INODE_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003388
3389 /*
3390 * Like most other Unix systems, set the ctime for inodes on a
3391 * rename.
3392 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003393 old.inode->i_ctime = ext4_current_time(old.inode);
3394 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003395
Miklos Szeredicd808de2014-10-24 00:14:37 +02003396 if (!whiteout) {
3397 /*
3398 * ok, that's it
3399 */
3400 ext4_rename_delete(handle, &old, force_reread);
3401 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003402
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003403 if (new.inode) {
3404 ext4_dec_count(handle, new.inode);
3405 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003406 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003407 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3408 ext4_update_dx_flag(old.dir);
3409 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003410 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3411 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003412 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003413
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003414 ext4_dec_count(handle, old.dir);
3415 if (new.inode) {
Michael Halcrowe875a2d2015-04-11 07:46:49 -04003416 /* checked ext4_empty_dir above, can't have another
3417 * parent, ext4_dec_count() won't work for many-linked
3418 * dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003419 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003421 ext4_inc_count(handle, new.dir);
3422 ext4_update_dx_flag(new.dir);
3423 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003424 }
3425 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003426 ext4_mark_inode_dirty(handle, old.dir);
3427 if (new.inode) {
3428 ext4_mark_inode_dirty(handle, new.inode);
3429 if (!new.inode->i_nlink)
3430 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003431 }
3432 retval = 0;
3433
3434end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003435 brelse(old.dir_bh);
3436 brelse(old.bh);
3437 brelse(new.bh);
Miklos Szeredicd808de2014-10-24 00:14:37 +02003438 if (whiteout) {
3439 if (retval)
3440 drop_nlink(whiteout);
3441 unlock_new_inode(whiteout);
3442 iput(whiteout);
3443 }
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003444 if (handle)
3445 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003446 return retval;
3447}
3448
Miklos Szeredibd429982014-04-01 17:08:44 +02003449static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3450 struct inode *new_dir, struct dentry *new_dentry)
3451{
3452 handle_t *handle = NULL;
3453 struct ext4_renament old = {
3454 .dir = old_dir,
3455 .dentry = old_dentry,
3456 .inode = old_dentry->d_inode,
3457 };
3458 struct ext4_renament new = {
3459 .dir = new_dir,
3460 .dentry = new_dentry,
3461 .inode = new_dentry->d_inode,
3462 };
3463 u8 new_file_type;
3464 int retval;
3465
3466 dquot_initialize(old.dir);
3467 dquot_initialize(new.dir);
3468
3469 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3470 &old.de, &old.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003471 if (IS_ERR(old.bh))
3472 return PTR_ERR(old.bh);
Miklos Szeredibd429982014-04-01 17:08:44 +02003473 /*
3474 * Check for inode number is _not_ due to possible IO errors.
3475 * We might rmdir the source, keep it as pwd of some process
3476 * and merrily kill the link to whatever was created under the
3477 * same name. Goodbye sticky bit ;-<
3478 */
3479 retval = -ENOENT;
3480 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3481 goto end_rename;
3482
3483 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3484 &new.de, &new.inlined);
Theodore Ts'o36de9282014-08-23 17:47:19 -04003485 if (IS_ERR(new.bh)) {
3486 retval = PTR_ERR(new.bh);
Theodore Ts'oa9cfcd62014-09-03 09:33:00 -04003487 new.bh = NULL;
Theodore Ts'o36de9282014-08-23 17:47:19 -04003488 goto end_rename;
3489 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003490
3491 /* RENAME_EXCHANGE case: old *and* new must both exist */
3492 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3493 goto end_rename;
3494
3495 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3496 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3497 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
Konstantin Khlebnikov7071b712015-04-02 16:32:15 -04003498 if (IS_ERR(handle)) {
3499 retval = PTR_ERR(handle);
3500 handle = NULL;
3501 goto end_rename;
3502 }
Miklos Szeredibd429982014-04-01 17:08:44 +02003503
3504 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3505 ext4_handle_sync(handle);
3506
3507 if (S_ISDIR(old.inode->i_mode)) {
3508 old.is_dir = true;
3509 retval = ext4_rename_dir_prepare(handle, &old);
3510 if (retval)
3511 goto end_rename;
3512 }
3513 if (S_ISDIR(new.inode->i_mode)) {
3514 new.is_dir = true;
3515 retval = ext4_rename_dir_prepare(handle, &new);
3516 if (retval)
3517 goto end_rename;
3518 }
3519
3520 /*
3521 * Other than the special case of overwriting a directory, parents'
3522 * nlink only needs to be modified if this is a cross directory rename.
3523 */
3524 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3525 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3526 new.dir_nlink_delta = -old.dir_nlink_delta;
3527 retval = -EMLINK;
3528 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3529 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3530 goto end_rename;
3531 }
3532
3533 new_file_type = new.de->file_type;
3534 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3535 if (retval)
3536 goto end_rename;
3537
3538 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3539 if (retval)
3540 goto end_rename;
3541
3542 /*
3543 * Like most other Unix systems, set the ctime for inodes on a
3544 * rename.
3545 */
3546 old.inode->i_ctime = ext4_current_time(old.inode);
3547 new.inode->i_ctime = ext4_current_time(new.inode);
3548 ext4_mark_inode_dirty(handle, old.inode);
3549 ext4_mark_inode_dirty(handle, new.inode);
3550
3551 if (old.dir_bh) {
3552 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3553 if (retval)
3554 goto end_rename;
3555 }
3556 if (new.dir_bh) {
3557 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3558 if (retval)
3559 goto end_rename;
3560 }
3561 ext4_update_dir_count(handle, &old);
3562 ext4_update_dir_count(handle, &new);
3563 retval = 0;
3564
3565end_rename:
3566 brelse(old.dir_bh);
3567 brelse(new.dir_bh);
3568 brelse(old.bh);
3569 brelse(new.bh);
3570 if (handle)
3571 ext4_journal_stop(handle);
3572 return retval;
3573}
3574
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003575static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3576 struct inode *new_dir, struct dentry *new_dentry,
3577 unsigned int flags)
3578{
Miklos Szeredicd808de2014-10-24 00:14:37 +02003579 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003580 return -EINVAL;
3581
Miklos Szeredibd429982014-04-01 17:08:44 +02003582 if (flags & RENAME_EXCHANGE) {
3583 return ext4_cross_rename(old_dir, old_dentry,
3584 new_dir, new_dentry);
3585 }
Miklos Szeredicd808de2014-10-24 00:14:37 +02003586
3587 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003588}
3589
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003590/*
3591 * directories can handle most operations...
3592 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003593const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003594 .create = ext4_create,
3595 .lookup = ext4_lookup,
3596 .link = ext4_link,
3597 .unlink = ext4_unlink,
3598 .symlink = ext4_symlink,
3599 .mkdir = ext4_mkdir,
3600 .rmdir = ext4_rmdir,
3601 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003602 .tmpfile = ext4_tmpfile,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003603 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003604 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003605 .setxattr = generic_setxattr,
3606 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003607 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003608 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003609 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003610 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003611 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003612};
3613
Arjan van de Ven754661f2007-02-12 00:55:38 -08003614const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003615 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003616 .setxattr = generic_setxattr,
3617 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003618 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003619 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003620 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003621 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003622};