blob: 3520ab8a66390c03d0fd95adccb6d7c8d74bb0c7 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/namei.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/namei.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 * Directory entry file type support and forward compatibility hooks
18 * for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
19 * Hash Tree Directory indexing (c)
20 * Daniel Phillips, 2001
21 * Hash Tree Directory indexing porting
22 * Christopher Li, 2002
23 * Hash Tree Directory indexing cleanup
24 * Theodore Ts'o, 2002
25 */
26
27#include <linux/fs.h>
28#include <linux/pagemap.h>
Mingming Caodab291a2006-10-11 01:21:01 -070029#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070030#include <linux/time.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/fcntl.h>
32#include <linux/stat.h>
33#include <linux/string.h>
34#include <linux/quotaops.h>
35#include <linux/buffer_head.h>
36#include <linux/bio.h>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040037#include "ext4.h"
38#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070039
Dave Kleikampac27a0e2006-10-11 01:20:50 -070040#include "xattr.h"
41#include "acl.h"
42
Jiaying Zhang0562e0b2011-03-21 21:38:05 -040043#include <trace/events/ext4.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070044/*
45 * define how far ahead to read directories while searching them.
46 */
47#define NAMEI_RA_CHUNKS 2
48#define NAMEI_RA_BLOCKS 4
Dave Kleikamp8c55e202007-05-24 13:04:54 -040049#define NAMEI_RA_SIZE (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Mingming Cao617ba132006-10-11 01:20:53 -070051static struct buffer_head *ext4_append(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070052 struct inode *inode,
Theodore Ts'o0f70b402013-02-15 03:35:57 -050053 ext4_lblk_t *block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -070054{
55 struct buffer_head *bh;
Theodore Ts'o0f70b402013-02-15 03:35:57 -050056 int err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057
Theodore Ts'odf981d02012-08-17 09:48:17 -040058 if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
59 ((inode->i_size >> 10) >=
Theodore Ts'o0f70b402013-02-15 03:35:57 -050060 EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
61 return ERR_PTR(-ENOSPC);
Theodore Ts'odf981d02012-08-17 09:48:17 -040062
Dave Kleikampac27a0e2006-10-11 01:20:50 -070063 *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
64
Theodore Ts'o0f70b402013-02-15 03:35:57 -050065 bh = ext4_bread(handle, inode, *block, 1, &err);
66 if (!bh)
67 return ERR_PTR(err);
68 inode->i_size += inode->i_sb->s_blocksize;
69 EXT4_I(inode)->i_disksize = inode->i_size;
liang xie5d601252014-05-12 22:06:43 -040070 BUFFER_TRACE(bh, "get_write_access");
Theodore Ts'o0f70b402013-02-15 03:35:57 -050071 err = ext4_journal_get_write_access(handle, bh);
72 if (err) {
73 brelse(bh);
74 ext4_std_error(inode->i_sb, err);
75 return ERR_PTR(err);
Carlos Maiolino6d1ab102012-09-27 09:31:33 -040076 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -070077 return bh;
78}
79
Theodore Ts'odc6982f2013-02-14 23:59:26 -050080static int ext4_dx_csum_verify(struct inode *inode,
81 struct ext4_dir_entry *dirent);
82
83typedef enum {
84 EITHER, INDEX, DIRENT
85} dirblock_type_t;
86
87#define ext4_read_dirblock(inode, block, type) \
88 __ext4_read_dirblock((inode), (block), (type), __LINE__)
89
90static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
91 ext4_lblk_t block,
92 dirblock_type_t type,
93 unsigned int line)
94{
95 struct buffer_head *bh;
96 struct ext4_dir_entry *dirent;
97 int err = 0, is_dx_block = 0;
98
99 bh = ext4_bread(NULL, inode, block, 0, &err);
100 if (!bh) {
101 if (err == 0) {
102 ext4_error_inode(inode, __func__, line, block,
103 "Directory hole found");
104 return ERR_PTR(-EIO);
105 }
106 __ext4_warning(inode->i_sb, __func__, line,
107 "error reading directory block "
108 "(ino %lu, block %lu)", inode->i_ino,
109 (unsigned long) block);
110 return ERR_PTR(err);
111 }
112 dirent = (struct ext4_dir_entry *) bh->b_data;
113 /* Determine whether or not we have an index block */
114 if (is_dx(inode)) {
115 if (block == 0)
116 is_dx_block = 1;
117 else if (ext4_rec_len_from_disk(dirent->rec_len,
118 inode->i_sb->s_blocksize) ==
119 inode->i_sb->s_blocksize)
120 is_dx_block = 1;
121 }
122 if (!is_dx_block && type == INDEX) {
123 ext4_error_inode(inode, __func__, line, block,
124 "directory leaf block found instead of index block");
125 return ERR_PTR(-EIO);
126 }
127 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
128 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) ||
129 buffer_verified(bh))
130 return bh;
131
132 /*
133 * An empty leaf block can get mistaken for a index block; for
134 * this reason, we can only check the index checksum when the
135 * caller is sure it should be an index block.
136 */
137 if (is_dx_block && type == INDEX) {
138 if (ext4_dx_csum_verify(inode, dirent))
139 set_buffer_verified(bh);
140 else {
141 ext4_error_inode(inode, __func__, line, block,
142 "Directory index failed checksum");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700143 brelse(bh);
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500144 return ERR_PTR(-EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700145 }
146 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500147 if (!is_dx_block) {
148 if (ext4_dirent_csum_verify(inode, dirent))
149 set_buffer_verified(bh);
150 else {
151 ext4_error_inode(inode, __func__, line, block,
152 "Directory block failed checksum");
153 brelse(bh);
154 return ERR_PTR(-EIO);
155 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700156 }
157 return bh;
158}
159
160#ifndef assert
161#define assert(test) J_ASSERT(test)
162#endif
163
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164#ifdef DX_DEBUG
165#define dxtrace(command) command
166#else
167#define dxtrace(command)
168#endif
169
170struct fake_dirent
171{
172 __le32 inode;
173 __le16 rec_len;
174 u8 name_len;
175 u8 file_type;
176};
177
178struct dx_countlimit
179{
180 __le16 limit;
181 __le16 count;
182};
183
184struct dx_entry
185{
186 __le32 hash;
187 __le32 block;
188};
189
190/*
191 * dx_root_info is laid out so that if it should somehow get overlaid by a
192 * dirent the two low bits of the hash version will be zero. Therefore, the
193 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
194 */
195
196struct dx_root
197{
198 struct fake_dirent dot;
199 char dot_name[4];
200 struct fake_dirent dotdot;
201 char dotdot_name[4];
202 struct dx_root_info
203 {
204 __le32 reserved_zero;
205 u8 hash_version;
206 u8 info_length; /* 8 */
207 u8 indirect_levels;
208 u8 unused_flags;
209 }
210 info;
211 struct dx_entry entries[0];
212};
213
214struct dx_node
215{
216 struct fake_dirent fake;
217 struct dx_entry entries[0];
218};
219
220
221struct dx_frame
222{
223 struct buffer_head *bh;
224 struct dx_entry *entries;
225 struct dx_entry *at;
226};
227
228struct dx_map_entry
229{
230 u32 hash;
Eric Sandeenef2b02d2007-09-18 22:46:42 -0700231 u16 offs;
232 u16 size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233};
234
Darrick J. Wonge6153912012-04-29 18:23:10 -0400235/*
236 * This goes at the end of each htree block.
237 */
238struct dx_tail {
239 u32 dt_reserved;
240 __le32 dt_checksum; /* crc32c(uuid+inum+dirblock) */
241};
242
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500243static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
244static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400245static inline unsigned dx_get_hash(struct dx_entry *entry);
246static void dx_set_hash(struct dx_entry *entry, unsigned value);
247static unsigned dx_get_count(struct dx_entry *entries);
248static unsigned dx_get_limit(struct dx_entry *entries);
249static void dx_set_count(struct dx_entry *entries, unsigned value);
250static void dx_set_limit(struct dx_entry *entries, unsigned value);
251static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
252static unsigned dx_node_limit(struct inode *dir);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400253static struct dx_frame *dx_probe(const struct qstr *d_name,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 struct inode *dir,
255 struct dx_hash_info *hinfo,
256 struct dx_frame *frame,
257 int *err);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400258static void dx_release(struct dx_frame *frames);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500259static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400260 struct dx_hash_info *hinfo, struct dx_map_entry map[]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700261static void dx_sort_map(struct dx_map_entry *map, unsigned count);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400262static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500263 struct dx_map_entry *offsets, int count, unsigned blocksize);
Theodore Ts'o8bad4592009-02-14 21:46:54 -0500264static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500265static void dx_insert_block(struct dx_frame *frame,
266 u32 hash, ext4_lblk_t block);
Mingming Cao617ba132006-10-11 01:20:53 -0700267static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 struct dx_frame *frame,
269 struct dx_frame *frames,
270 __u32 *start_hash);
Theodore Ts'of702ba02008-09-22 15:21:01 -0400271static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
272 const struct qstr *d_name,
273 struct ext4_dir_entry_2 **res_dir,
274 int *err);
Mingming Cao617ba132006-10-11 01:20:53 -0700275static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700276 struct inode *inode);
277
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400278/* checksumming functions */
Tao Ma3c47d542012-12-10 14:05:59 -0500279void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
280 unsigned int blocksize)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400281{
282 memset(t, 0, sizeof(struct ext4_dir_entry_tail));
283 t->det_rec_len = ext4_rec_len_to_disk(
284 sizeof(struct ext4_dir_entry_tail), blocksize);
285 t->det_reserved_ft = EXT4_FT_DIR_CSUM;
286}
287
288/* Walk through a dirent block to find a checksum "dirent" at the tail */
289static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
290 struct ext4_dir_entry *de)
291{
292 struct ext4_dir_entry_tail *t;
293
294#ifdef PARANOID
295 struct ext4_dir_entry *d, *top;
296
297 d = de;
298 top = (struct ext4_dir_entry *)(((void *)de) +
299 (EXT4_BLOCK_SIZE(inode->i_sb) -
300 sizeof(struct ext4_dir_entry_tail)));
301 while (d < top && d->rec_len)
302 d = (struct ext4_dir_entry *)(((void *)d) +
303 le16_to_cpu(d->rec_len));
304
305 if (d != top)
306 return NULL;
307
308 t = (struct ext4_dir_entry_tail *)d;
309#else
310 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
311#endif
312
313 if (t->det_reserved_zero1 ||
314 le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
315 t->det_reserved_zero2 ||
316 t->det_reserved_ft != EXT4_FT_DIR_CSUM)
317 return NULL;
318
319 return t;
320}
321
322static __le32 ext4_dirent_csum(struct inode *inode,
323 struct ext4_dir_entry *dirent, int size)
324{
325 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
326 struct ext4_inode_info *ei = EXT4_I(inode);
327 __u32 csum;
328
329 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
330 return cpu_to_le32(csum);
331}
332
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500333static void warn_no_space_for_csum(struct inode *inode)
334{
335 ext4_warning(inode->i_sb, "no space in directory inode %lu leaf for "
336 "checksum. Please run e2fsck -D.", inode->i_ino);
337}
338
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400339int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
340{
341 struct ext4_dir_entry_tail *t;
342
343 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
344 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
345 return 1;
346
347 t = get_dirent_tail(inode, dirent);
348 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500349 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400350 return 0;
351 }
352
353 if (t->det_checksum != ext4_dirent_csum(inode, dirent,
354 (void *)t - (void *)dirent))
355 return 0;
356
357 return 1;
358}
359
360static void ext4_dirent_csum_set(struct inode *inode,
361 struct ext4_dir_entry *dirent)
362{
363 struct ext4_dir_entry_tail *t;
364
365 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
366 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
367 return;
368
369 t = get_dirent_tail(inode, dirent);
370 if (!t) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500371 warn_no_space_for_csum(inode);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400372 return;
373 }
374
375 t->det_checksum = ext4_dirent_csum(inode, dirent,
376 (void *)t - (void *)dirent);
377}
378
Tao Ma3c47d542012-12-10 14:05:59 -0500379int ext4_handle_dirty_dirent_node(handle_t *handle,
380 struct inode *inode,
381 struct buffer_head *bh)
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400382{
383 ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
384 return ext4_handle_dirty_metadata(handle, inode, bh);
385}
386
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400387static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
388 struct ext4_dir_entry *dirent,
389 int *offset)
390{
391 struct ext4_dir_entry *dp;
392 struct dx_root_info *root;
393 int count_offset;
394
395 if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
396 count_offset = 8;
397 else if (le16_to_cpu(dirent->rec_len) == 12) {
398 dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
399 if (le16_to_cpu(dp->rec_len) !=
400 EXT4_BLOCK_SIZE(inode->i_sb) - 12)
401 return NULL;
402 root = (struct dx_root_info *)(((void *)dp + 12));
403 if (root->reserved_zero ||
404 root->info_length != sizeof(struct dx_root_info))
405 return NULL;
406 count_offset = 32;
407 } else
408 return NULL;
409
410 if (offset)
411 *offset = count_offset;
412 return (struct dx_countlimit *)(((void *)dirent) + count_offset);
413}
414
415static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
416 int count_offset, int count, struct dx_tail *t)
417{
418 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
419 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'od6a77102013-04-09 23:59:55 -0400420 __u32 csum;
421 __le32 save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400422 int size;
423
424 size = count_offset + (count * sizeof(struct dx_entry));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400425 save_csum = t->dt_checksum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400426 t->dt_checksum = 0;
427 csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
428 csum = ext4_chksum(sbi, csum, (__u8 *)t, sizeof(struct dx_tail));
Theodore Ts'od6a77102013-04-09 23:59:55 -0400429 t->dt_checksum = save_csum;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400430
431 return cpu_to_le32(csum);
432}
433
434static int ext4_dx_csum_verify(struct inode *inode,
435 struct ext4_dir_entry *dirent)
436{
437 struct dx_countlimit *c;
438 struct dx_tail *t;
439 int count_offset, limit, count;
440
441 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
442 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
443 return 1;
444
445 c = get_dx_countlimit(inode, dirent, &count_offset);
446 if (!c) {
447 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
448 return 1;
449 }
450 limit = le16_to_cpu(c->limit);
451 count = le16_to_cpu(c->count);
452 if (count_offset + (limit * sizeof(struct dx_entry)) >
453 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500454 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400455 return 1;
456 }
457 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
458
459 if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
460 count, t))
461 return 0;
462 return 1;
463}
464
465static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
466{
467 struct dx_countlimit *c;
468 struct dx_tail *t;
469 int count_offset, limit, count;
470
471 if (!EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
472 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
473 return;
474
475 c = get_dx_countlimit(inode, dirent, &count_offset);
476 if (!c) {
477 EXT4_ERROR_INODE(inode, "dir seems corrupt? Run e2fsck -D.");
478 return;
479 }
480 limit = le16_to_cpu(c->limit);
481 count = le16_to_cpu(c->count);
482 if (count_offset + (limit * sizeof(struct dx_entry)) >
483 EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
Theodore Ts'odffe9d82012-11-10 22:20:05 -0500484 warn_no_space_for_csum(inode);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400485 return;
486 }
487 t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
488
489 t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
490}
491
492static inline int ext4_handle_dirty_dx_node(handle_t *handle,
493 struct inode *inode,
494 struct buffer_head *bh)
495{
496 ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
497 return ext4_handle_dirty_metadata(handle, inode, bh);
498}
499
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700500/*
Li Zefanf795e142008-07-11 19:27:31 -0400501 * p is at least 6 bytes before the end of page
502 */
503static inline struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500504ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
Li Zefanf795e142008-07-11 19:27:31 -0400505{
506 return (struct ext4_dir_entry_2 *)((char *)p +
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500507 ext4_rec_len_from_disk(p->rec_len, blocksize));
Li Zefanf795e142008-07-11 19:27:31 -0400508}
509
510/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700511 * Future: use high four bits of block for coalesce-on-delete flags
512 * Mask them off for now.
513 */
514
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500515static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700516{
517 return le32_to_cpu(entry->block) & 0x00ffffff;
518}
519
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500520static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521{
522 entry->block = cpu_to_le32(value);
523}
524
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400525static inline unsigned dx_get_hash(struct dx_entry *entry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700526{
527 return le32_to_cpu(entry->hash);
528}
529
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400530static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700531{
532 entry->hash = cpu_to_le32(value);
533}
534
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400535static inline unsigned dx_get_count(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700536{
537 return le16_to_cpu(((struct dx_countlimit *) entries)->count);
538}
539
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400540static inline unsigned dx_get_limit(struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541{
542 return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
543}
544
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400545static inline void dx_set_count(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546{
547 ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
548}
549
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400550static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700551{
552 ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
553}
554
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400555static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700556{
Mingming Cao617ba132006-10-11 01:20:53 -0700557 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
558 EXT4_DIR_REC_LEN(2) - infosize;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400559
560 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
561 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
562 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
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400566static inline unsigned dx_node_limit(struct inode *dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700567{
Mingming Cao617ba132006-10-11 01:20:53 -0700568 unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400569
570 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
571 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
572 entry_space -= sizeof(struct dx_tail);
Li Zefand9c769b2008-07-11 19:27:31 -0400573 return entry_space / sizeof(struct dx_entry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700574}
575
576/*
577 * Debug
578 */
579#ifdef DX_DEBUG
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400580static void dx_show_index(char * label, struct dx_entry *entries)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700581{
Andrew Morton63f57932006-10-11 01:21:24 -0700582 int i, n = dx_get_count (entries);
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400583 printk(KERN_DEBUG "%s index ", label);
Andrew Morton63f57932006-10-11 01:21:24 -0700584 for (i = 0; i < n; i++) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400585 printk("%x->%lu ", i ? dx_get_hash(entries + i) :
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500586 0, (unsigned long)dx_get_block(entries + i));
Andrew Morton63f57932006-10-11 01:21:24 -0700587 }
588 printk("\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700589}
590
591struct stats
592{
593 unsigned names;
594 unsigned space;
595 unsigned bcount;
596};
597
Mingming Cao617ba132006-10-11 01:20:53 -0700598static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext4_dir_entry_2 *de,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599 int size, int show_names)
600{
601 unsigned names = 0, space = 0;
602 char *base = (char *) de;
603 struct dx_hash_info h = *hinfo;
604
605 printk("names: ");
606 while ((char *) de < base + size)
607 {
608 if (de->inode)
609 {
610 if (show_names)
611 {
612 int len = de->name_len;
613 char *name = de->name;
614 while (len--) printk("%c", *name++);
Mingming Cao617ba132006-10-11 01:20:53 -0700615 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 printk(":%x.%u ", h.hash,
Bernd Schubert265c6a02011-07-16 19:41:23 -0400617 (unsigned) ((char *) de - base));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 }
Mingming Cao617ba132006-10-11 01:20:53 -0700619 space += EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700620 names++;
621 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500622 de = ext4_next_entry(de, size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623 }
624 printk("(%i)\n", names);
625 return (struct stats) { names, space, 1 };
626}
627
628struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
629 struct dx_entry *entries, int levels)
630{
631 unsigned blocksize = dir->i_sb->s_blocksize;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400632 unsigned count = dx_get_count(entries), names = 0, space = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700633 unsigned bcount = 0;
634 struct buffer_head *bh;
635 int err;
636 printk("%i indexed blocks...\n", count);
637 for (i = 0; i < count; i++, entries++)
638 {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500639 ext4_lblk_t block = dx_get_block(entries);
640 ext4_lblk_t hash = i ? dx_get_hash(entries): 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
642 struct stats stats;
643 printk("%s%3u:%03u hash %8x/%8x ",levels?"":" ", i, block, hash, range);
Mingming Cao617ba132006-10-11 01:20:53 -0700644 if (!(bh = ext4_bread (NULL,dir, block, 0,&err))) continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 stats = levels?
646 dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
Mingming Cao617ba132006-10-11 01:20:53 -0700647 dx_show_leaf(hinfo, (struct ext4_dir_entry_2 *) bh->b_data, blocksize, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 names += stats.names;
649 space += stats.space;
650 bcount += stats.bcount;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400651 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 }
653 if (bcount)
Theodore Ts'o60e66792010-05-17 07:00:00 -0400654 printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400655 levels ? "" : " ", names, space/bcount,
656 (space/bcount)*100/blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 return (struct stats) { names, space, bcount};
658}
659#endif /* DX_DEBUG */
660
661/*
662 * Probe for a directory leaf block to search.
663 *
664 * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
665 * error in the directory index, and the caller should fall back to
666 * searching the directory normally. The callers of dx_probe **MUST**
667 * check for this error code, and make sure it never gets reflected
668 * back to userspace.
669 */
670static struct dx_frame *
Theodore Ts'of702ba02008-09-22 15:21:01 -0400671dx_probe(const struct qstr *d_name, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672 struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
673{
674 unsigned count, indirect;
675 struct dx_entry *at, *entries, *p, *q, *m;
676 struct dx_root *root;
677 struct buffer_head *bh;
678 struct dx_frame *frame = frame_in;
679 u32 hash;
680
681 frame->bh = NULL;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500682 bh = ext4_read_dirblock(dir, 0, INDEX);
683 if (IS_ERR(bh)) {
684 *err = PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700685 goto fail;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400686 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687 root = (struct dx_root *) bh->b_data;
688 if (root->info.hash_version != DX_HASH_TEA &&
689 root->info.hash_version != DX_HASH_HALF_MD4 &&
690 root->info.hash_version != DX_HASH_LEGACY) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500691 ext4_warning(dir->i_sb, "Unrecognised inode hash code %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692 root->info.hash_version);
693 brelse(bh);
694 *err = ERR_BAD_DX_DIR;
695 goto fail;
696 }
697 hinfo->hash_version = root->info.hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400698 if (hinfo->hash_version <= DX_HASH_TEA)
699 hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700700 hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400701 if (d_name)
702 ext4fs_dirhash(d_name->name, d_name->len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 hash = hinfo->hash;
704
705 if (root->info.unused_flags & 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500706 ext4_warning(dir->i_sb, "Unimplemented inode hash flags: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 root->info.unused_flags);
708 brelse(bh);
709 *err = ERR_BAD_DX_DIR;
710 goto fail;
711 }
712
713 if ((indirect = root->info.indirect_levels) > 1) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500714 ext4_warning(dir->i_sb, "Unimplemented inode hash depth: %#06x",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715 root->info.indirect_levels);
716 brelse(bh);
717 *err = ERR_BAD_DX_DIR;
718 goto fail;
719 }
720
721 entries = (struct dx_entry *) (((char *)&root->info) +
722 root->info.info_length);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700723
724 if (dx_get_limit(entries) != dx_root_limit(dir,
725 root->info.info_length)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500726 ext4_warning(dir->i_sb, "dx entry: limit != root limit");
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700727 brelse(bh);
728 *err = ERR_BAD_DX_DIR;
729 goto fail;
730 }
731
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400732 dxtrace(printk("Look up %x", hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700733 while (1)
734 {
735 count = dx_get_count(entries);
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700736 if (!count || count > dx_get_limit(entries)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500737 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700738 "dx entry: no count or count > limit");
739 brelse(bh);
740 *err = ERR_BAD_DX_DIR;
741 goto fail2;
742 }
743
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700744 p = entries + 1;
745 q = entries + count - 1;
746 while (p <= q)
747 {
748 m = p + (q - p)/2;
749 dxtrace(printk("."));
750 if (dx_get_hash(m) > hash)
751 q = m - 1;
752 else
753 p = m + 1;
754 }
755
756 if (0) // linear search cross check
757 {
758 unsigned n = count - 1;
759 at = entries;
760 while (n--)
761 {
762 dxtrace(printk(","));
763 if (dx_get_hash(++at) > hash)
764 {
765 at--;
766 break;
767 }
768 }
769 assert (at == p - 1);
770 }
771
772 at = p - 1;
773 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
774 frame->bh = bh;
775 frame->entries = entries;
776 frame->at = at;
777 if (!indirect--) return frame;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500778 bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
779 if (IS_ERR(bh)) {
780 *err = PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700781 goto fail2;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -0400782 }
Guo Chao41be8712013-01-28 21:33:28 -0500783 entries = ((struct dx_node *) bh->b_data)->entries;
Darrick J. Wongdbe89442012-04-29 18:39:10 -0400784
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700785 if (dx_get_limit(entries) != dx_node_limit (dir)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500786 ext4_warning(dir->i_sb,
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700787 "dx entry: limit != node limit");
788 brelse(bh);
789 *err = ERR_BAD_DX_DIR;
790 goto fail2;
791 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792 frame++;
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700793 frame->bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700794 }
795fail2:
796 while (frame >= frame_in) {
797 brelse(frame->bh);
798 frame--;
799 }
800fail:
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700801 if (*err == ERR_BAD_DX_DIR)
Eric Sandeen12062dd2010-02-15 14:19:27 -0500802 ext4_warning(dir->i_sb,
Zheng Liu9ee49302012-02-20 23:09:36 -0500803 "Corrupt dir inode %lu, running e2fsck is "
Eric Sandeen3d82aba2007-09-18 22:46:38 -0700804 "recommended.", dir->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700805 return NULL;
806}
807
808static void dx_release (struct dx_frame *frames)
809{
810 if (frames[0].bh == NULL)
811 return;
812
813 if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
814 brelse(frames[1].bh);
815 brelse(frames[0].bh);
816}
817
818/*
819 * This function increments the frame pointer to search the next leaf
820 * block, and reads in the necessary intervening nodes if the search
821 * should be necessary. Whether or not the search is necessary is
822 * controlled by the hash parameter. If the hash value is even, then
823 * the search is only continued if the next block starts with that
824 * hash value. This is used if we are searching for a specific file.
825 *
826 * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
827 *
828 * This function returns 1 if the caller should continue to search,
829 * or 0 if it should not. If there is an error reading one of the
830 * index blocks, it will a negative error code.
831 *
832 * If start_hash is non-null, it will be filled in with the starting
833 * hash of the next page.
834 */
Mingming Cao617ba132006-10-11 01:20:53 -0700835static int ext4_htree_next_block(struct inode *dir, __u32 hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700836 struct dx_frame *frame,
837 struct dx_frame *frames,
838 __u32 *start_hash)
839{
840 struct dx_frame *p;
841 struct buffer_head *bh;
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500842 int num_frames = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843 __u32 bhash;
844
845 p = frame;
846 /*
847 * Find the next leaf page by incrementing the frame pointer.
848 * If we run out of entries in the interior node, loop around and
849 * increment pointer in the parent node. When we break out of
850 * this loop, num_frames indicates the number of interior
851 * nodes need to be read.
852 */
853 while (1) {
854 if (++(p->at) < p->entries + dx_get_count(p->entries))
855 break;
856 if (p == frames)
857 return 0;
858 num_frames++;
859 p--;
860 }
861
862 /*
863 * If the hash is 1, then continue only if the next page has a
864 * continuation hash of any value. This is used for readdir
865 * handling. Otherwise, check to see if the hash matches the
866 * desired contiuation hash. If it doesn't, return since
867 * there's no point to read in the successive index pages.
868 */
869 bhash = dx_get_hash(p->at);
870 if (start_hash)
871 *start_hash = bhash;
872 if ((hash & 1) == 0) {
873 if ((bhash & ~1) != hash)
874 return 0;
875 }
876 /*
877 * If the hash is HASH_NB_ALWAYS, we always go to the next
878 * block so no check is necessary
879 */
880 while (num_frames--) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500881 bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
882 if (IS_ERR(bh))
883 return PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884 p++;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400885 brelse(p->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886 p->bh = bh;
887 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
888 }
889 return 1;
890}
891
892
893/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894 * This function fills a red-black tree with information from a
895 * directory block. It returns the number directory entries loaded
896 * into the tree. If there is an error it is returned in err.
897 */
898static int htree_dirblock_to_tree(struct file *dir_file,
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500899 struct inode *dir, ext4_lblk_t block,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900 struct dx_hash_info *hinfo,
901 __u32 start_hash, __u32 start_minor_hash)
902{
903 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -0700904 struct ext4_dir_entry_2 *de, *top;
Carlos Maiolino90b0a972012-09-17 23:39:12 -0400905 int err = 0, count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500907 dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
908 (unsigned long)block));
Theodore Ts'odc6982f2013-02-14 23:59:26 -0500909 bh = ext4_read_dirblock(dir, block, DIRENT);
910 if (IS_ERR(bh))
911 return PTR_ERR(bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -0400912
Mingming Cao617ba132006-10-11 01:20:53 -0700913 de = (struct ext4_dir_entry_2 *) bh->b_data;
914 top = (struct ext4_dir_entry_2 *) ((char *) de +
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 dir->i_sb->s_blocksize -
Mingming Cao617ba132006-10-11 01:20:53 -0700916 EXT4_DIR_REC_LEN(0));
Wei Yongjun3d0518f2009-02-14 23:01:36 -0500917 for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
Theodore Ts'of7c21172011-01-10 12:10:55 -0500918 if (ext4_check_dir_entry(dir, NULL, de, bh,
Tao Ma226ba972012-12-10 14:05:58 -0500919 bh->b_data, bh->b_size,
Theodore Ts'ocad3f002010-12-19 22:07:02 -0500920 (block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
921 + ((char *)de - bh->b_data))) {
Al Viro64cb9272013-07-01 08:12:38 -0400922 /* silently ignore the rest of the block */
923 break;
Eric Sandeene6c40212006-12-06 20:36:28 -0800924 }
Mingming Cao617ba132006-10-11 01:20:53 -0700925 ext4fs_dirhash(de->name, de->name_len, hinfo);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700926 if ((hinfo->hash < start_hash) ||
927 ((hinfo->hash == start_hash) &&
928 (hinfo->minor_hash < start_minor_hash)))
929 continue;
930 if (de->inode == 0)
931 continue;
Mingming Cao617ba132006-10-11 01:20:53 -0700932 if ((err = ext4_htree_store_dirent(dir_file,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933 hinfo->hash, hinfo->minor_hash, de)) != 0) {
934 brelse(bh);
935 return err;
936 }
937 count++;
938 }
939 brelse(bh);
940 return count;
941}
942
943
944/*
945 * This function fills a red-black tree with information from a
946 * directory. We start scanning the directory in hash order, starting
947 * at start_hash and start_minor_hash.
948 *
949 * This function returns the number of entries inserted into the tree,
950 * or a negative error code.
951 */
Mingming Cao617ba132006-10-11 01:20:53 -0700952int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 __u32 start_minor_hash, __u32 *next_hash)
954{
955 struct dx_hash_info hinfo;
Mingming Cao617ba132006-10-11 01:20:53 -0700956 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700957 struct dx_frame frames[2], *frame;
958 struct inode *dir;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500959 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700960 int count = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -0500961 int ret, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700962 __u32 hashval;
963
Theodore Ts'o60e66792010-05-17 07:00:00 -0400964 dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400965 start_hash, start_minor_hash));
Al Viro496ad9a2013-01-23 17:07:38 -0500966 dir = file_inode(dir_file);
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400967 if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
Mingming Cao617ba132006-10-11 01:20:53 -0700968 hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -0400969 if (hinfo.hash_version <= DX_HASH_TEA)
970 hinfo.hash_version +=
971 EXT4_SB(dir->i_sb)->s_hash_unsigned;
Mingming Cao617ba132006-10-11 01:20:53 -0700972 hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
Tao Ma8af0f082013-04-19 17:53:09 -0400973 if (ext4_has_inline_data(dir)) {
974 int has_inline_data = 1;
975 count = htree_inlinedir_to_tree(dir_file, dir, 0,
976 &hinfo, start_hash,
977 start_minor_hash,
978 &has_inline_data);
979 if (has_inline_data) {
980 *next_hash = ~0;
981 return count;
982 }
983 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
985 start_hash, start_minor_hash);
986 *next_hash = ~0;
987 return count;
988 }
989 hinfo.hash = start_hash;
990 hinfo.minor_hash = 0;
Theodore Ts'of702ba02008-09-22 15:21:01 -0400991 frame = dx_probe(NULL, dir, &hinfo, frames, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 if (!frame)
993 return err;
994
995 /* Add '.' and '..' from the htree header */
996 if (!start_hash && !start_minor_hash) {
Mingming Cao617ba132006-10-11 01:20:53 -0700997 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
998 if ((err = ext4_htree_store_dirent(dir_file, 0, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700999 goto errout;
1000 count++;
1001 }
1002 if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001003 de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001004 de = ext4_next_entry(de, dir->i_sb->s_blocksize);
Mingming Cao617ba132006-10-11 01:20:53 -07001005 if ((err = ext4_htree_store_dirent(dir_file, 2, 0, de)) != 0)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 goto errout;
1007 count++;
1008 }
1009
1010 while (1) {
1011 block = dx_get_block(frame->at);
1012 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
1013 start_hash, start_minor_hash);
1014 if (ret < 0) {
1015 err = ret;
1016 goto errout;
1017 }
1018 count += ret;
1019 hashval = ~0;
Mingming Cao617ba132006-10-11 01:20:53 -07001020 ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001021 frame, frames, &hashval);
1022 *next_hash = hashval;
1023 if (ret < 0) {
1024 err = ret;
1025 goto errout;
1026 }
1027 /*
1028 * Stop if: (a) there are no more entries, or
1029 * (b) we have inserted at least one entry and the
1030 * next hash value is not a continuation
1031 */
1032 if ((ret == 0) ||
1033 (count && ((hashval & 1) == 0)))
1034 break;
1035 }
1036 dx_release(frames);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001037 dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1038 "next hash: %x\n", count, *next_hash));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039 return count;
1040errout:
1041 dx_release(frames);
1042 return (err);
1043}
1044
Tao Ma7335cd32012-12-10 14:05:59 -05001045static inline int search_dirblock(struct buffer_head *bh,
1046 struct inode *dir,
1047 const struct qstr *d_name,
1048 unsigned int offset,
1049 struct ext4_dir_entry_2 **res_dir)
1050{
1051 return search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1052 d_name, offset, res_dir);
1053}
1054
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001055/*
1056 * Directory block splitting, compacting
1057 */
1058
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001059/*
1060 * Create map of hash values, offsets, and sizes, stored at end of block.
1061 * Returns number of entries mapped.
1062 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001063static int dx_make_map(struct ext4_dir_entry_2 *de, unsigned blocksize,
1064 struct dx_hash_info *hinfo,
1065 struct dx_map_entry *map_tail)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001066{
1067 int count = 0;
1068 char *base = (char *) de;
1069 struct dx_hash_info h = *hinfo;
1070
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001071 while ((char *) de < base + blocksize) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001072 if (de->name_len && de->inode) {
Mingming Cao617ba132006-10-11 01:20:53 -07001073 ext4fs_dirhash(de->name, de->name_len, &h);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 map_tail--;
1075 map_tail->hash = h.hash;
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001076 map_tail->offs = ((char *) de - base)>>2;
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001077 map_tail->size = le16_to_cpu(de->rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001078 count++;
1079 cond_resched();
1080 }
1081 /* XXX: do we need to check rec_len == 0 case? -Chris */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001082 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001083 }
1084 return count;
1085}
1086
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001087/* Sort map by hash value */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001088static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1089{
Andrew Morton63f57932006-10-11 01:21:24 -07001090 struct dx_map_entry *p, *q, *top = map + count - 1;
1091 int more;
1092 /* Combsort until bubble sort doesn't suck */
1093 while (count > 2) {
1094 count = count*10/13;
1095 if (count - 9 < 2) /* 9, 10 -> 11 */
1096 count = 11;
1097 for (p = top, q = p - count; q >= map; p--, q--)
1098 if (p->hash < q->hash)
1099 swap(*p, *q);
1100 }
1101 /* Garden variety bubble sort */
1102 do {
1103 more = 0;
1104 q = top;
1105 while (q-- > map) {
1106 if (q[1].hash >= q[0].hash)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107 continue;
Andrew Morton63f57932006-10-11 01:21:24 -07001108 swap(*(q+1), *q);
1109 more = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110 }
1111 } while(more);
1112}
1113
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001114static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001115{
1116 struct dx_entry *entries = frame->entries;
1117 struct dx_entry *old = frame->at, *new = old + 1;
1118 int count = dx_get_count(entries);
1119
1120 assert(count < dx_get_limit(entries));
1121 assert(old < entries + count);
1122 memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1123 dx_set_hash(new, hash);
1124 dx_set_block(new, block);
1125 dx_set_count(entries, count + 1);
1126}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001127
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128/*
Mingming Cao617ba132006-10-11 01:20:53 -07001129 * NOTE! unlike strncmp, ext4_match returns 1 for success, 0 for failure.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130 *
Mingming Cao617ba132006-10-11 01:20:53 -07001131 * `len <= EXT4_NAME_LEN' is guaranteed by caller.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 * `de != NULL' is guaranteed by caller.
1133 */
Mingming Cao617ba132006-10-11 01:20:53 -07001134static inline int ext4_match (int len, const char * const name,
1135 struct ext4_dir_entry_2 * de)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136{
1137 if (len != de->name_len)
1138 return 0;
1139 if (!de->inode)
1140 return 0;
1141 return !memcmp(name, de->name, len);
1142}
1143
1144/*
1145 * Returns 0 if not found, -1 on failure, and 1 on success
1146 */
Tao Ma7335cd32012-12-10 14:05:59 -05001147int search_dir(struct buffer_head *bh,
1148 char *search_buf,
1149 int buf_size,
1150 struct inode *dir,
1151 const struct qstr *d_name,
1152 unsigned int offset,
1153 struct ext4_dir_entry_2 **res_dir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154{
Mingming Cao617ba132006-10-11 01:20:53 -07001155 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001156 char * dlimit;
1157 int de_len;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001158 const char *name = d_name->name;
1159 int namelen = d_name->len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001160
Tao Ma7335cd32012-12-10 14:05:59 -05001161 de = (struct ext4_dir_entry_2 *)search_buf;
1162 dlimit = search_buf + buf_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001163 while ((char *) de < dlimit) {
1164 /* this code is executed quadratically often */
1165 /* do minimal checking `by hand' */
1166
1167 if ((char *) de + namelen <= dlimit &&
Mingming Cao617ba132006-10-11 01:20:53 -07001168 ext4_match (namelen, name, de)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001169 /* found a match - just to be sure, do a full check */
Tao Ma226ba972012-12-10 14:05:58 -05001170 if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1171 bh->b_size, offset))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 return -1;
1173 *res_dir = de;
1174 return 1;
1175 }
1176 /* prevent looping on a bad block */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001177 de_len = ext4_rec_len_from_disk(de->rec_len,
1178 dir->i_sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001179 if (de_len <= 0)
1180 return -1;
1181 offset += de_len;
Mingming Cao617ba132006-10-11 01:20:53 -07001182 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001183 }
1184 return 0;
1185}
1186
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001187static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1188 struct ext4_dir_entry *de)
1189{
1190 struct super_block *sb = dir->i_sb;
1191
1192 if (!is_dx(dir))
1193 return 0;
1194 if (block == 0)
1195 return 1;
1196 if (de->inode == 0 &&
1197 ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1198 sb->s_blocksize)
1199 return 1;
1200 return 0;
1201}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202
1203/*
Mingming Cao617ba132006-10-11 01:20:53 -07001204 * ext4_find_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001205 *
1206 * finds an entry in the specified directory with the wanted name. It
1207 * returns the cache buffer in which the entry was found, and the entry
1208 * itself (as a parameter - res_dir). It does NOT read the inode of the
1209 * entry - you'll have to do that yourself if you want to.
1210 *
1211 * The returned buffer_head has ->b_count elevated. The caller is expected
1212 * to brelse() it when appropriate.
1213 */
Theodore Ts'of702ba02008-09-22 15:21:01 -04001214static struct buffer_head * ext4_find_entry (struct inode *dir,
1215 const struct qstr *d_name,
Tao Ma32f7f222012-12-10 14:06:01 -05001216 struct ext4_dir_entry_2 **res_dir,
1217 int *inlined)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001219 struct super_block *sb;
1220 struct buffer_head *bh_use[NAMEI_RA_SIZE];
1221 struct buffer_head *bh, *ret = NULL;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001222 ext4_lblk_t start, block, b;
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001223 const u8 *name = d_name->name;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001224 int ra_max = 0; /* Number of bh's in the readahead
1225 buffer, bh_use[] */
1226 int ra_ptr = 0; /* Current index into readahead
1227 buffer */
1228 int num = 0;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001229 ext4_lblk_t nblocks;
1230 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 int namelen;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001232
1233 *res_dir = NULL;
1234 sb = dir->i_sb;
Theodore Ts'of702ba02008-09-22 15:21:01 -04001235 namelen = d_name->len;
Mingming Cao617ba132006-10-11 01:20:53 -07001236 if (namelen > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001237 return NULL;
Tao Mae8e948e2012-12-10 14:06:00 -05001238
1239 if (ext4_has_inline_data(dir)) {
1240 int has_inline_data = 1;
1241 ret = ext4_find_inline_entry(dir, d_name, res_dir,
1242 &has_inline_data);
Tao Ma32f7f222012-12-10 14:06:01 -05001243 if (has_inline_data) {
1244 if (inlined)
1245 *inlined = 1;
Tao Mae8e948e2012-12-10 14:06:00 -05001246 return ret;
Tao Ma32f7f222012-12-10 14:06:01 -05001247 }
Tao Mae8e948e2012-12-10 14:06:00 -05001248 }
1249
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001250 if ((namelen <= 2) && (name[0] == '.') &&
Aaro Koskinen6d5c3aa2010-12-14 21:45:31 -05001251 (name[1] == '.' || name[1] == '\0')) {
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001252 /*
1253 * "." or ".." will only be in the first block
1254 * NFS may look up ".."; "." should be handled by the VFS
1255 */
1256 block = start = 0;
1257 nblocks = 1;
1258 goto restart;
1259 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 if (is_dx(dir)) {
Theodore Ts'of702ba02008-09-22 15:21:01 -04001261 bh = ext4_dx_find_entry(dir, d_name, res_dir, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001262 /*
1263 * On success, or if the error was file not found,
1264 * return. Otherwise, fall back to doing a search the
1265 * old fashioned way.
1266 */
1267 if (bh || (err != ERR_BAD_DX_DIR))
1268 return bh;
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001269 dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1270 "falling back\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001271 }
Mingming Cao617ba132006-10-11 01:20:53 -07001272 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1273 start = EXT4_I(dir)->i_dir_start_lookup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001274 if (start >= nblocks)
1275 start = 0;
1276 block = start;
1277restart:
1278 do {
1279 /*
1280 * We deal with the read-ahead logic here.
1281 */
1282 if (ra_ptr >= ra_max) {
1283 /* Refill the readahead buffer */
1284 ra_ptr = 0;
1285 b = block;
1286 for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
1287 /*
1288 * Terminate if we reach the end of the
1289 * directory and must wrap, or if our
1290 * search has finished at this block.
1291 */
1292 if (b >= nblocks || (num && block == start)) {
1293 bh_use[ra_max] = NULL;
1294 break;
1295 }
1296 num++;
Mingming Cao617ba132006-10-11 01:20:53 -07001297 bh = ext4_getblk(NULL, dir, b++, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001298 bh_use[ra_max] = bh;
1299 if (bh)
Christoph Hellwig65299a32011-08-23 14:50:29 +02001300 ll_rw_block(READ | REQ_META | REQ_PRIO,
1301 1, &bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302 }
1303 }
1304 if ((bh = bh_use[ra_ptr++]) == NULL)
1305 goto next;
1306 wait_on_buffer(bh);
1307 if (!buffer_uptodate(bh)) {
1308 /* read error, skip block & hope for the best */
Theodore Ts'o24676da2010-05-16 21:00:00 -04001309 EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1310 (unsigned long) block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311 brelse(bh);
1312 goto next;
1313 }
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001314 if (!buffer_verified(bh) &&
Darrick J. Wongc6af8802012-11-12 23:51:02 -05001315 !is_dx_internal_node(dir, block,
1316 (struct ext4_dir_entry *)bh->b_data) &&
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001317 !ext4_dirent_csum_verify(dir,
1318 (struct ext4_dir_entry *)bh->b_data)) {
1319 EXT4_ERROR_INODE(dir, "checksumming directory "
1320 "block %lu", (unsigned long)block);
1321 brelse(bh);
1322 goto next;
1323 }
1324 set_buffer_verified(bh);
Theodore Ts'of702ba02008-09-22 15:21:01 -04001325 i = search_dirblock(bh, dir, d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001326 block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001327 if (i == 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07001328 EXT4_I(dir)->i_dir_start_lookup = block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001329 ret = bh;
1330 goto cleanup_and_exit;
1331 } else {
1332 brelse(bh);
1333 if (i < 0)
1334 goto cleanup_and_exit;
1335 }
1336 next:
1337 if (++block >= nblocks)
1338 block = 0;
1339 } while (block != start);
1340
1341 /*
1342 * If the directory has grown while we were searching, then
1343 * search the last part of the directory before giving up.
1344 */
1345 block = nblocks;
Mingming Cao617ba132006-10-11 01:20:53 -07001346 nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001347 if (block < nblocks) {
1348 start = 0;
1349 goto restart;
1350 }
1351
1352cleanup_and_exit:
1353 /* Clean up the read-ahead blocks */
1354 for (; ra_ptr < ra_max; ra_ptr++)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001355 brelse(bh_use[ra_ptr]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001356 return ret;
1357}
1358
Theodore Ts'of702ba02008-09-22 15:21:01 -04001359static struct buffer_head * ext4_dx_find_entry(struct inode *dir, const struct qstr *d_name,
Mingming Cao617ba132006-10-11 01:20:53 -07001360 struct ext4_dir_entry_2 **res_dir, int *err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001361{
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001362 struct super_block * sb = dir->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001363 struct dx_hash_info hinfo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001364 struct dx_frame frames[2], *frame;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 struct buffer_head *bh;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001366 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001368
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001369 if (!(frame = dx_probe(d_name, dir, &hinfo, frames, err)))
1370 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001371 do {
1372 block = dx_get_block(frame->at);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001373 bh = ext4_read_dirblock(dir, block, DIRENT);
1374 if (IS_ERR(bh)) {
1375 *err = PTR_ERR(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376 goto errout;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001377 }
Theodore Ts'o7845c042010-10-27 21:30:08 -04001378 retval = search_dirblock(bh, dir, d_name,
1379 block << EXT4_BLOCK_SIZE_BITS(sb),
1380 res_dir);
1381 if (retval == 1) { /* Success! */
1382 dx_release(frames);
1383 return bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001384 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001385 brelse(bh);
Theodore Ts'o7845c042010-10-27 21:30:08 -04001386 if (retval == -1) {
1387 *err = ERR_BAD_DX_DIR;
1388 goto errout;
1389 }
1390
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001391 /* Check to see if we should continue to search */
Theodore Ts'o8941ec82010-10-27 21:30:08 -04001392 retval = ext4_htree_next_block(dir, hinfo.hash, frame,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393 frames, NULL);
1394 if (retval < 0) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001395 ext4_warning(sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396 "error reading index page in directory #%lu",
1397 dir->i_ino);
1398 *err = retval;
1399 goto errout;
1400 }
1401 } while (retval == 1);
1402
1403 *err = -ENOENT;
1404errout:
Bernd Schubert265c6a02011-07-16 19:41:23 -04001405 dxtrace(printk(KERN_DEBUG "%s not found\n", d_name->name));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001406 dx_release (frames);
1407 return NULL;
1408}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409
Al Viro00cd8dd2012-06-10 17:13:09 -04001410static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001411{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001412 struct inode *inode;
1413 struct ext4_dir_entry_2 *de;
1414 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415
Mingming Cao617ba132006-10-11 01:20:53 -07001416 if (dentry->d_name.len > EXT4_NAME_LEN)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 return ERR_PTR(-ENAMETOOLONG);
1418
Tao Ma32f7f222012-12-10 14:06:01 -05001419 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 inode = NULL;
1421 if (bh) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001422 __u32 ino = le32_to_cpu(de->inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001423 brelse(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001424 if (!ext4_valid_inum(dir->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001425 EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001426 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001427 }
Andreas Dilger7e936b72012-05-28 17:02:25 -04001428 if (unlikely(ino == dir->i_ino)) {
David Howellsa34e15c2014-01-06 14:04:23 -05001429 EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1430 dentry);
Andreas Dilger7e936b72012-05-28 17:02:25 -04001431 return ERR_PTR(-EIO);
1432 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001433 inode = ext4_iget(dir->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -04001434 if (inode == ERR_PTR(-ESTALE)) {
1435 EXT4_ERROR_INODE(dir,
1436 "deleted inode referenced: %u",
1437 ino);
1438 return ERR_PTR(-EIO);
Bryan Donlane6f009b2009-02-22 21:20:25 -05001439 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001440 }
1441 return d_splice_alias(inode, dentry);
1442}
1443
1444
Mingming Cao617ba132006-10-11 01:20:53 -07001445struct dentry *ext4_get_parent(struct dentry *child)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001446{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001447 __u32 ino;
Linus Torvalds26fe5752012-05-10 13:14:12 -07001448 static const struct qstr dotdot = QSTR_INIT("..", 2);
Mingming Cao617ba132006-10-11 01:20:53 -07001449 struct ext4_dir_entry_2 * de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001450 struct buffer_head *bh;
1451
Tao Ma32f7f222012-12-10 14:06:01 -05001452 bh = ext4_find_entry(child->d_inode, &dotdot, &de, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001453 if (!bh)
1454 return ERR_PTR(-ENOENT);
1455 ino = le32_to_cpu(de->inode);
1456 brelse(bh);
1457
Mingming Cao617ba132006-10-11 01:20:53 -07001458 if (!ext4_valid_inum(child->d_inode->i_sb, ino)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04001459 EXT4_ERROR_INODE(child->d_inode,
1460 "bad parent inode number: %u", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001461 return ERR_PTR(-EIO);
Vasily Averina6c15c22007-07-15 23:40:46 -07001462 }
1463
Christoph Hellwig44003722008-08-11 15:49:04 +02001464 return d_obtain_alias(ext4_iget(child->d_inode->i_sb, ino));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001465}
1466
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001467/*
1468 * Move count entries from end of map between two memory locations.
1469 * Returns pointer to last entry moved.
1470 */
Mingming Cao617ba132006-10-11 01:20:53 -07001471static struct ext4_dir_entry_2 *
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001472dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1473 unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001474{
1475 unsigned rec_len = 0;
1476
1477 while (count--) {
Theodore Ts'o60e66792010-05-17 07:00:00 -04001478 struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
Toshiyuki Okajima9aee2282009-06-08 12:41:35 -04001479 (from + (map->offs<<2));
Mingming Cao617ba132006-10-11 01:20:53 -07001480 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001481 memcpy (to, de, rec_len);
Mingming Cao617ba132006-10-11 01:20:53 -07001482 ((struct ext4_dir_entry_2 *) to)->rec_len =
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001483 ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001484 de->inode = 0;
1485 map++;
1486 to += rec_len;
1487 }
Mingming Cao617ba132006-10-11 01:20:53 -07001488 return (struct ext4_dir_entry_2 *) (to - rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001489}
1490
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001491/*
1492 * Compact each dir entry in the range to the minimal rec_len.
1493 * Returns pointer to last entry in range.
1494 */
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001495static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001496{
Mingming Cao617ba132006-10-11 01:20:53 -07001497 struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001498 unsigned rec_len = 0;
1499
1500 prev = to = de;
Theodore Ts'o8bad4592009-02-14 21:46:54 -05001501 while ((char*)de < base + blocksize) {
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001502 next = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001503 if (de->inode && de->name_len) {
Mingming Cao617ba132006-10-11 01:20:53 -07001504 rec_len = EXT4_DIR_REC_LEN(de->name_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001505 if (de > to)
1506 memmove(to, de, rec_len);
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001507 to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001508 prev = to;
Mingming Cao617ba132006-10-11 01:20:53 -07001509 to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001510 }
1511 de = next;
1512 }
1513 return prev;
1514}
1515
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001516/*
1517 * Split a full leaf block to make room for a new dir entry.
1518 * Allocate a new block, and move entries so that they are approx. equally full.
1519 * Returns pointer to de in block into which the new entry will be inserted.
1520 */
Mingming Cao617ba132006-10-11 01:20:53 -07001521static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522 struct buffer_head **bh,struct dx_frame *frame,
1523 struct dx_hash_info *hinfo, int *error)
1524{
1525 unsigned blocksize = dir->i_sb->s_blocksize;
1526 unsigned count, continued;
1527 struct buffer_head *bh2;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001528 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001529 u32 hash2;
1530 struct dx_map_entry *map;
1531 char *data1 = (*bh)->b_data, *data2;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001532 unsigned split, move, size;
Mingming Cao617ba132006-10-11 01:20:53 -07001533 struct ext4_dir_entry_2 *de = NULL, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001534 struct ext4_dir_entry_tail *t;
1535 int csum_size = 0;
Theodore Ts'o59e315b2008-12-06 16:58:39 -05001536 int err = 0, i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001538 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
1539 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1540 csum_size = sizeof(struct ext4_dir_entry_tail);
1541
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001542 bh2 = ext4_append(handle, dir, &newblock);
1543 if (IS_ERR(bh2)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001544 brelse(*bh);
1545 *bh = NULL;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001546 *error = PTR_ERR(bh2);
1547 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001548 }
1549
1550 BUFFER_TRACE(*bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001551 err = ext4_journal_get_write_access(handle, *bh);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001552 if (err)
1553 goto journal_error;
1554
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001555 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001556 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001557 if (err)
1558 goto journal_error;
1559
1560 data2 = bh2->b_data;
1561
1562 /* create map in the end of data2 block */
1563 map = (struct dx_map_entry *) (data2 + blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001564 count = dx_make_map((struct ext4_dir_entry_2 *) data1,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001565 blocksize, hinfo, map);
1566 map -= count;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001567 dx_sort_map(map, count);
Eric Sandeenef2b02d2007-09-18 22:46:42 -07001568 /* Split the existing block in the middle, size-wise */
1569 size = 0;
1570 move = 0;
1571 for (i = count-1; i >= 0; i--) {
1572 /* is more than half of this entry in 2nd half of the block? */
1573 if (size + map[i].size/2 > blocksize/2)
1574 break;
1575 size += map[i].size;
1576 move++;
1577 }
1578 /* map index at which we will split */
1579 split = count - move;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001580 hash2 = map[split].hash;
1581 continued = hash2 == map[split - 1].hash;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001582 dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1583 (unsigned long)dx_get_block(frame->at),
1584 hash2, split, count-split));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001585
1586 /* Fancy dance to stay within two buffers */
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001587 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001588 de = dx_pack_dirents(data1, blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001589 de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1590 (char *) de,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001591 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001592 de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1593 (char *) de2,
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001594 blocksize);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001595 if (csum_size) {
1596 t = EXT4_DIRENT_TAIL(data2, blocksize);
1597 initialize_dirent_tail(t, blocksize);
1598
1599 t = EXT4_DIRENT_TAIL(data1, blocksize);
1600 initialize_dirent_tail(t, blocksize);
1601 }
1602
Mingming Cao617ba132006-10-11 01:20:53 -07001603 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data1, blocksize, 1));
1604 dxtrace(dx_show_leaf (hinfo, (struct ext4_dir_entry_2 *) data2, blocksize, 1));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001605
1606 /* Which block gets the new entry? */
1607 if (hinfo->hash >= hash2)
1608 {
1609 swap(*bh, bh2);
1610 de = de2;
1611 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001612 dx_insert_block(frame, hash2 + continued, newblock);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001613 err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001614 if (err)
1615 goto journal_error;
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001616 err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001617 if (err)
1618 goto journal_error;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001619 brelse(bh2);
1620 dxtrace(dx_show_index("frame", frame->entries));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001621 return de;
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001622
1623journal_error:
1624 brelse(*bh);
1625 brelse(bh2);
1626 *bh = NULL;
1627 ext4_std_error(dir->i_sb, err);
Dmitriy Monakhovfedee542007-05-08 00:25:34 -07001628 *error = err;
1629 return NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001630}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001631
Tao Ma978fef92012-12-10 14:05:58 -05001632int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1633 struct buffer_head *bh,
1634 void *buf, int buf_size,
1635 const char *name, int namelen,
1636 struct ext4_dir_entry_2 **dest_de)
1637{
1638 struct ext4_dir_entry_2 *de;
1639 unsigned short reclen = EXT4_DIR_REC_LEN(namelen);
1640 int nlen, rlen;
1641 unsigned int offset = 0;
1642 char *top;
1643
1644 de = (struct ext4_dir_entry_2 *)buf;
1645 top = buf + buf_size - reclen;
1646 while ((char *) de <= top) {
1647 if (ext4_check_dir_entry(dir, NULL, de, bh,
1648 buf, buf_size, offset))
1649 return -EIO;
1650 if (ext4_match(namelen, name, de))
1651 return -EEXIST;
1652 nlen = EXT4_DIR_REC_LEN(de->name_len);
1653 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1654 if ((de->inode ? rlen - nlen : rlen) >= reclen)
1655 break;
1656 de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1657 offset += rlen;
1658 }
1659 if ((char *) de > top)
1660 return -ENOSPC;
1661
1662 *dest_de = de;
1663 return 0;
1664}
1665
1666void ext4_insert_dentry(struct inode *inode,
1667 struct ext4_dir_entry_2 *de,
1668 int buf_size,
1669 const char *name, int namelen)
1670{
1671
1672 int nlen, rlen;
1673
1674 nlen = EXT4_DIR_REC_LEN(de->name_len);
1675 rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1676 if (de->inode) {
1677 struct ext4_dir_entry_2 *de1 =
1678 (struct ext4_dir_entry_2 *)((char *)de + nlen);
1679 de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1680 de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1681 de = de1;
1682 }
1683 de->file_type = EXT4_FT_UNKNOWN;
1684 de->inode = cpu_to_le32(inode->i_ino);
1685 ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1686 de->name_len = namelen;
1687 memcpy(de->name, name, namelen);
1688}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689/*
1690 * Add a new entry into a directory (leaf) block. If de is non-NULL,
1691 * it points to a directory entry which is guaranteed to be large
1692 * enough for new directory entry. If de is NULL, then
1693 * add_dirent_to_buf will attempt search the directory block for
1694 * space. It will return -ENOSPC if no space is available, and -EIO
1695 * and -EEXIST if directory entry already exists.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001696 */
1697static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
Mingming Cao617ba132006-10-11 01:20:53 -07001698 struct inode *inode, struct ext4_dir_entry_2 *de,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001699 struct buffer_head *bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001700{
1701 struct inode *dir = dentry->d_parent->d_inode;
1702 const char *name = dentry->d_name.name;
1703 int namelen = dentry->d_name.len;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05001704 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001705 int csum_size = 0;
Tao Ma978fef92012-12-10 14:05:58 -05001706 int err;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001707
1708 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1709 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1710 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001711
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001712 if (!de) {
Tao Ma978fef92012-12-10 14:05:58 -05001713 err = ext4_find_dest_de(dir, inode,
1714 bh, bh->b_data, blocksize - csum_size,
1715 name, namelen, &de);
1716 if (err)
1717 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001718 }
1719 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001720 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001721 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07001722 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001723 return err;
1724 }
1725
1726 /* By now the buffer is marked for journaling */
Tao Ma978fef92012-12-10 14:05:58 -05001727 ext4_insert_dentry(inode, de, blocksize, name, namelen);
1728
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001729 /*
1730 * XXX shouldn't update any times until successful
1731 * completion of syscall, but too many callers depend
1732 * on this.
1733 *
1734 * XXX similarly, too many callers depend on
Mingming Cao617ba132006-10-11 01:20:53 -07001735 * ext4_new_inode() setting the times, but error
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001736 * recovery deletes the inode, so the worst that can
1737 * happen is that the times are slightly out of date
1738 * and/or different from the directory change time.
1739 */
Kalpak Shahef7f3832007-07-18 09:15:20 -04001740 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07001741 ext4_update_dx_flag(dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001742 dir->i_version++;
Mingming Cao617ba132006-10-11 01:20:53 -07001743 ext4_mark_inode_dirty(handle, dir);
Frank Mayhar03901312009-01-07 00:06:22 -05001744 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001745 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001746 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -07001747 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001748 return 0;
1749}
1750
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001751/*
1752 * This converts a one block unindexed directory to a 3 block indexed
1753 * directory, and adds the dentry to the indexed directory.
1754 */
1755static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
1756 struct inode *inode, struct buffer_head *bh)
1757{
1758 struct inode *dir = dentry->d_parent->d_inode;
1759 const char *name = dentry->d_name.name;
1760 int namelen = dentry->d_name.len;
1761 struct buffer_head *bh2;
1762 struct dx_root *root;
1763 struct dx_frame frames[2], *frame;
1764 struct dx_entry *entries;
Mingming Cao617ba132006-10-11 01:20:53 -07001765 struct ext4_dir_entry_2 *de, *de2;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001766 struct ext4_dir_entry_tail *t;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001767 char *data1, *top;
1768 unsigned len;
1769 int retval;
1770 unsigned blocksize;
1771 struct dx_hash_info hinfo;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001772 ext4_lblk_t block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001773 struct fake_dirent *fde;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001774 int csum_size = 0;
1775
1776 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1777 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1778 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);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001843 frame = frames;
1844 frame->entries = entries;
1845 frame->at = entries;
1846 frame->bh = bh;
1847 bh = bh2;
Allison Henderson6976a6f2011-05-15 00:19:41 -04001848
Darrick J. Wongdbe89442012-04-29 18:39:10 -04001849 ext4_handle_dirty_dx_node(handle, dir, frame->bh);
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001850 ext4_handle_dirty_dirent_node(handle, dir, bh);
Allison Henderson6976a6f2011-05-15 00:19:41 -04001851
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001852 de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001853 if (!de) {
1854 /*
1855 * Even if the block split failed, we have to properly write
1856 * out all the changes we did so far. Otherwise we can end up
1857 * with corrupted filesystem.
1858 */
1859 ext4_mark_inode_dirty(handle, dir);
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001860 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001861 return retval;
Jan Kara7ad8e4e2011-05-03 11:05:55 -04001862 }
1863 dx_release(frames);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001864
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001865 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1866 brelse(bh);
1867 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001868}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001869
1870/*
Mingming Cao617ba132006-10-11 01:20:53 -07001871 * ext4_add_entry()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001872 *
1873 * adds a file entry to the specified directory, using the same
Mingming Cao617ba132006-10-11 01:20:53 -07001874 * semantics as ext4_find_entry(). It returns NULL if it failed.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001875 *
1876 * NOTE!! The inode part of 'de' is left at 0 - which means you
1877 * may not sleep between calling this and putting something into
1878 * the entry, as someone else might have used it while you slept.
1879 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001880static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
1881 struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001882{
1883 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001884 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001885 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001886 struct ext4_dir_entry_tail *t;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001887 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001888 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001889 int dx_fallback=0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001890 unsigned blocksize;
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001891 ext4_lblk_t block, blocks;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001892 int csum_size = 0;
1893
1894 if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb,
1895 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
1896 csum_size = sizeof(struct ext4_dir_entry_tail);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001897
1898 sb = dir->i_sb;
1899 blocksize = sb->s_blocksize;
1900 if (!dentry->d_name.len)
1901 return -EINVAL;
Tao Ma3c47d542012-12-10 14:05:59 -05001902
1903 if (ext4_has_inline_data(dir)) {
1904 retval = ext4_try_add_inline_entry(handle, dentry, inode);
1905 if (retval < 0)
1906 return retval;
1907 if (retval == 1) {
1908 retval = 0;
1909 return retval;
1910 }
1911 }
1912
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001913 if (is_dx(dir)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001914 retval = ext4_dx_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001915 if (!retval || (retval != ERR_BAD_DX_DIR))
1916 return retval;
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001917 ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001918 dx_fallback++;
Mingming Cao617ba132006-10-11 01:20:53 -07001919 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001920 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001921 blocks = dir->i_size >> sb->s_blocksize_bits;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05001922 for (block = 0; block < blocks; block++) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001923 bh = ext4_read_dirblock(dir, block, DIRENT);
1924 if (IS_ERR(bh))
1925 return PTR_ERR(bh);
1926
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001927 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001928 if (retval != -ENOSPC) {
1929 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001930 return retval;
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001931 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001932
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001933 if (blocks == 1 && !dx_fallback &&
Theodore Ts'o1e424a32009-11-08 15:45:44 -05001934 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_DIR_INDEX))
1935 return make_indexed_dir(handle, dentry, inode, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001936 brelse(bh);
1937 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05001938 bh = ext4_append(handle, dir, &block);
1939 if (IS_ERR(bh))
1940 return PTR_ERR(bh);
Mingming Cao617ba132006-10-11 01:20:53 -07001941 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001942 de->inode = 0;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04001943 de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
1944
1945 if (csum_size) {
1946 t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
1947 initialize_dirent_tail(t, blocksize);
1948 }
1949
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001950 retval = add_dirent_to_buf(handle, dentry, inode, de, bh);
1951 brelse(bh);
Frank Mayhar14ece102010-05-17 08:00:00 -04001952 if (retval == 0)
1953 ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001954 return retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001955}
1956
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001957/*
1958 * Returns 0 for success, or a negative error value
1959 */
Mingming Cao617ba132006-10-11 01:20:53 -07001960static int ext4_dx_add_entry(handle_t *handle, struct dentry *dentry,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001961 struct inode *inode)
1962{
1963 struct dx_frame frames[2], *frame;
1964 struct dx_entry *entries, *at;
1965 struct dx_hash_info hinfo;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001966 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967 struct inode *dir = dentry->d_parent->d_inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001968 struct super_block *sb = dir->i_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07001969 struct ext4_dir_entry_2 *de;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 int err;
1971
Theodore Ts'of702ba02008-09-22 15:21:01 -04001972 frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001973 if (!frame)
1974 return err;
1975 entries = frame->entries;
1976 at = frame->at;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05001977 bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT);
1978 if (IS_ERR(bh)) {
1979 err = PTR_ERR(bh);
1980 bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001981 goto cleanup;
Carlos Maiolino6d1ab102012-09-27 09:31:33 -04001982 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983
1984 BUFFER_TRACE(bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07001985 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001986 if (err)
1987 goto journal_error;
1988
1989 err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
Theodore Ts'o2de770a2009-11-23 07:25:49 -05001990 if (err != -ENOSPC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001991 goto cleanup;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001992
1993 /* Block full, should compress but for now just split */
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001994 dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001995 dx_get_count(entries), dx_get_limit(entries)));
1996 /* Need to split index? */
1997 if (dx_get_count(entries) == dx_get_limit(entries)) {
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05001998 ext4_lblk_t newblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001999 unsigned icount = dx_get_count(entries);
2000 int levels = frame - frames;
2001 struct dx_entry *entries2;
2002 struct dx_node *node2;
2003 struct buffer_head *bh2;
2004
2005 if (levels && (dx_get_count(frames->entries) ==
2006 dx_get_limit(frames->entries))) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002007 ext4_warning(sb, "Directory index full!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002008 err = -ENOSPC;
2009 goto cleanup;
2010 }
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002011 bh2 = ext4_append(handle, dir, &newblock);
2012 if (IS_ERR(bh2)) {
2013 err = PTR_ERR(bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002014 goto cleanup;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002015 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002016 node2 = (struct dx_node *)(bh2->b_data);
2017 entries2 = node2->entries;
Andreas Schlick1f7bebb2009-09-10 23:16:07 -04002018 memset(&node2->fake, 0, sizeof(struct fake_dirent));
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002019 node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2020 sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002021 BUFFER_TRACE(frame->bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002022 err = ext4_journal_get_write_access(handle, frame->bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002023 if (err)
2024 goto journal_error;
2025 if (levels) {
2026 unsigned icount1 = icount/2, icount2 = icount - icount1;
2027 unsigned hash2 = dx_get_hash(entries + icount1);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002028 dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2029 icount1, icount2));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030
2031 BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
Mingming Cao617ba132006-10-11 01:20:53 -07002032 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002033 frames[0].bh);
2034 if (err)
2035 goto journal_error;
2036
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002037 memcpy((char *) entries2, (char *) (entries + icount1),
2038 icount2 * sizeof(struct dx_entry));
2039 dx_set_count(entries, icount1);
2040 dx_set_count(entries2, icount2);
2041 dx_set_limit(entries2, dx_node_limit(dir));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002042
2043 /* Which index block gets the new entry? */
2044 if (at - entries >= icount1) {
2045 frame->at = at = at - entries - icount1 + entries2;
2046 frame->entries = entries = entries2;
2047 swap(frame->bh, bh2);
2048 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002049 dx_insert_block(frames + 0, hash2, newblock);
2050 dxtrace(dx_show_index("node", frames[1].entries));
2051 dxtrace(dx_show_index("node",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002052 ((struct dx_node *) bh2->b_data)->entries));
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002053 err = ext4_handle_dirty_dx_node(handle, dir, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002054 if (err)
2055 goto journal_error;
2056 brelse (bh2);
2057 } else {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002058 dxtrace(printk(KERN_DEBUG
2059 "Creating second level index...\n"));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002060 memcpy((char *) entries2, (char *) entries,
2061 icount * sizeof(struct dx_entry));
2062 dx_set_limit(entries2, dx_node_limit(dir));
2063
2064 /* Set up root */
2065 dx_set_count(entries, 1);
2066 dx_set_block(entries + 0, newblock);
2067 ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
2068
2069 /* Add new access path frame */
2070 frame = frames + 1;
2071 frame->at = at = at - entries + entries2;
2072 frame->entries = entries = entries2;
2073 frame->bh = bh2;
Mingming Cao617ba132006-10-11 01:20:53 -07002074 err = ext4_journal_get_write_access(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002075 frame->bh);
2076 if (err)
2077 goto journal_error;
2078 }
Darrick J. Wongdbe89442012-04-29 18:39:10 -04002079 err = ext4_handle_dirty_dx_node(handle, dir, frames[0].bh);
Theodore Ts'ob4097142011-01-10 12:46:59 -05002080 if (err) {
2081 ext4_std_error(inode->i_sb, err);
2082 goto cleanup;
2083 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002084 }
2085 de = do_split(handle, dir, &bh, frame, &hinfo, &err);
2086 if (!de)
2087 goto cleanup;
2088 err = add_dirent_to_buf(handle, dentry, inode, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002089 goto cleanup;
2090
2091journal_error:
Mingming Cao617ba132006-10-11 01:20:53 -07002092 ext4_std_error(dir->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002093cleanup:
Guo Chaob1deefc2013-01-28 21:41:02 -05002094 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002095 dx_release(frames);
2096 return err;
2097}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098
2099/*
Tao Ma05019a92012-12-10 14:06:00 -05002100 * ext4_generic_delete_entry deletes a directory entry by merging it
2101 * with the previous entry
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002102 */
Tao Ma05019a92012-12-10 14:06:00 -05002103int ext4_generic_delete_entry(handle_t *handle,
2104 struct inode *dir,
2105 struct ext4_dir_entry_2 *de_del,
2106 struct buffer_head *bh,
2107 void *entry_buf,
2108 int buf_size,
2109 int csum_size)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002110{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002111 struct ext4_dir_entry_2 *de, *pde;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002112 unsigned int blocksize = dir->i_sb->s_blocksize;
Tao Ma05019a92012-12-10 14:06:00 -05002113 int i;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002114
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002115 i = 0;
2116 pde = NULL;
Tao Ma05019a92012-12-10 14:06:00 -05002117 de = (struct ext4_dir_entry_2 *)entry_buf;
2118 while (i < buf_size - csum_size) {
Tao Ma226ba972012-12-10 14:05:58 -05002119 if (ext4_check_dir_entry(dir, NULL, de, bh,
2120 bh->b_data, bh->b_size, i))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002121 return -EIO;
2122 if (de == de_del) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002123 if (pde)
Jan Karaa72d7f82008-01-28 23:58:27 -05002124 pde->rec_len = ext4_rec_len_to_disk(
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002125 ext4_rec_len_from_disk(pde->rec_len,
2126 blocksize) +
2127 ext4_rec_len_from_disk(de->rec_len,
2128 blocksize),
2129 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002130 else
2131 de->inode = 0;
2132 dir->i_version++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002133 return 0;
2134 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002135 i += ext4_rec_len_from_disk(de->rec_len, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002136 pde = de;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002137 de = ext4_next_entry(de, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002138 }
2139 return -ENOENT;
2140}
2141
Tao Ma05019a92012-12-10 14:06:00 -05002142static int ext4_delete_entry(handle_t *handle,
2143 struct inode *dir,
2144 struct ext4_dir_entry_2 *de_del,
2145 struct buffer_head *bh)
2146{
2147 int err, csum_size = 0;
2148
Tao Ma9f40fe52012-12-10 14:06:00 -05002149 if (ext4_has_inline_data(dir)) {
2150 int has_inline_data = 1;
2151 err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2152 &has_inline_data);
2153 if (has_inline_data)
2154 return err;
2155 }
2156
Tao Ma05019a92012-12-10 14:06:00 -05002157 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2158 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2159 csum_size = sizeof(struct ext4_dir_entry_tail);
2160
2161 BUFFER_TRACE(bh, "get_write_access");
2162 err = ext4_journal_get_write_access(handle, bh);
2163 if (unlikely(err))
2164 goto out;
2165
2166 err = ext4_generic_delete_entry(handle, dir, de_del,
2167 bh, bh->b_data,
2168 dir->i_sb->s_blocksize, csum_size);
2169 if (err)
2170 goto out;
2171
2172 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2173 err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2174 if (unlikely(err))
2175 goto out;
2176
2177 return 0;
2178out:
2179 if (err != -ENOENT)
2180 ext4_std_error(dir->i_sb, err);
2181 return err;
2182}
2183
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002184/*
2185 * DIR_NLINK feature is set if 1) nlinks > EXT4_LINK_MAX or 2) nlinks == 2,
2186 * since this indicates that nlinks count was previously 1.
2187 */
2188static void ext4_inc_count(handle_t *handle, struct inode *inode)
2189{
2190 inc_nlink(inode);
2191 if (is_dx(inode) && inode->i_nlink > 1) {
2192 /* limit is 16-bit i_links_count */
2193 if (inode->i_nlink >= EXT4_LINK_MAX || inode->i_nlink == 2) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002194 set_nlink(inode, 1);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002195 EXT4_SET_RO_COMPAT_FEATURE(inode->i_sb,
2196 EXT4_FEATURE_RO_COMPAT_DIR_NLINK);
2197 }
2198 }
2199}
2200
2201/*
2202 * If a directory had nlink == 1, then we should let it be 1. This indicates
2203 * directory has >EXT4_LINK_MAX subdirs.
2204 */
2205static void ext4_dec_count(handle_t *handle, struct inode *inode)
2206{
Andreas Dilger909a4cf2011-10-26 03:22:31 -04002207 if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2208 drop_nlink(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002209}
2210
2211
Mingming Cao617ba132006-10-11 01:20:53 -07002212static int ext4_add_nondir(handle_t *handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002213 struct dentry *dentry, struct inode *inode)
2214{
Mingming Cao617ba132006-10-11 01:20:53 -07002215 int err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002216 if (!err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002217 ext4_mark_inode_dirty(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002218 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002219 d_instantiate(dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002220 return 0;
2221 }
Eric Sandeen731b9a52007-02-10 01:46:16 -08002222 drop_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002223 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002224 iput(inode);
2225 return err;
2226}
2227
2228/*
2229 * By the time this is called, we already have created
2230 * the directory cache entry for the new file, but it
2231 * is so far negative - it has no inode.
2232 *
2233 * If the create succeeds, we fill in the inode information
2234 * with d_instantiate().
2235 */
Al Viro4acdaf22011-07-26 01:42:34 -04002236static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04002237 bool excl)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002238{
2239 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002240 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002241 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002242
Christoph Hellwig871a2932010-03-03 09:05:07 -05002243 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002244
Theodore Ts'o11395752013-02-09 16:27:09 -05002245 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002246 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002248 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2249 NULL, EXT4_HT_DIR, credits);
2250 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002251 err = PTR_ERR(inode);
2252 if (!IS_ERR(inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002253 inode->i_op = &ext4_file_inode_operations;
2254 inode->i_fop = &ext4_file_operations;
2255 ext4_set_aops(inode);
2256 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002257 if (!err && IS_DIRSYNC(dir))
2258 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002259 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002260 if (handle)
2261 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002262 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002263 goto retry;
2264 return err;
2265}
2266
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002267static int ext4_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04002268 umode_t mode, dev_t rdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002269{
2270 handle_t *handle;
2271 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002272 int err, credits, retries = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002273
2274 if (!new_valid_dev(rdev))
2275 return -EINVAL;
2276
Christoph Hellwig871a2932010-03-03 09:05:07 -05002277 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002278
Theodore Ts'o11395752013-02-09 16:27:09 -05002279 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002280 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002281retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002282 inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2283 NULL, EXT4_HT_DIR, credits);
2284 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002285 err = PTR_ERR(inode);
2286 if (!IS_ERR(inode)) {
2287 init_special_inode(inode, inode->i_mode, rdev);
Mingming Cao617ba132006-10-11 01:20:53 -07002288 inode->i_op = &ext4_special_inode_operations;
Mingming Cao617ba132006-10-11 01:20:53 -07002289 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002290 if (!err && IS_DIRSYNC(dir))
2291 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002292 }
Theodore Ts'o11395752013-02-09 16:27:09 -05002293 if (handle)
2294 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002295 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002296 goto retry;
2297 return err;
2298}
2299
Al Viroaf51a2a2013-06-29 13:23:08 +04002300static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2301{
2302 handle_t *handle;
2303 struct inode *inode;
2304 int err, retries = 0;
2305
2306 dquot_initialize(dir);
2307
2308retry:
2309 inode = ext4_new_inode_start_handle(dir, mode,
2310 NULL, 0, NULL,
2311 EXT4_HT_DIR,
2312 EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2313 4 + EXT4_XATTR_TRANS_BLOCKS);
2314 handle = ext4_journal_current_handle();
2315 err = PTR_ERR(inode);
2316 if (!IS_ERR(inode)) {
2317 inode->i_op = &ext4_file_inode_operations;
2318 inode->i_fop = &ext4_file_operations;
2319 ext4_set_aops(inode);
Zheng Liue94bd342013-07-20 21:58:38 -04002320 d_tmpfile(dentry, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002321 err = ext4_orphan_add(handle, inode);
2322 if (err)
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002323 goto err_unlock_inode;
Al Viroaf51a2a2013-06-29 13:23:08 +04002324 mark_inode_dirty(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002325 unlock_new_inode(inode);
2326 }
2327 if (handle)
2328 ext4_journal_stop(handle);
2329 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2330 goto retry;
2331 return err;
Miklos Szeredi43ae9e32013-10-10 16:48:19 +02002332err_unlock_inode:
Al Viroaf51a2a2013-06-29 13:23:08 +04002333 ext4_journal_stop(handle);
2334 unlock_new_inode(inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002335 return err;
2336}
2337
Tao Maa774f9c2012-12-10 14:05:57 -05002338struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2339 struct ext4_dir_entry_2 *de,
2340 int blocksize, int csum_size,
2341 unsigned int parent_ino, int dotdot_real_len)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002342{
Tao Maa774f9c2012-12-10 14:05:57 -05002343 de->inode = cpu_to_le32(inode->i_ino);
2344 de->name_len = 1;
2345 de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2346 blocksize);
2347 strcpy(de->name, ".");
2348 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2349
2350 de = ext4_next_entry(de, blocksize);
2351 de->inode = cpu_to_le32(parent_ino);
2352 de->name_len = 2;
2353 if (!dotdot_real_len)
2354 de->rec_len = ext4_rec_len_to_disk(blocksize -
2355 (csum_size + EXT4_DIR_REC_LEN(1)),
2356 blocksize);
2357 else
2358 de->rec_len = ext4_rec_len_to_disk(
2359 EXT4_DIR_REC_LEN(de->name_len), blocksize);
2360 strcpy(de->name, "..");
2361 ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2362
2363 return ext4_next_entry(de, blocksize);
2364}
2365
2366static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2367 struct inode *inode)
2368{
Namhyung Kimdabd9912011-01-10 12:11:16 -05002369 struct buffer_head *dir_block = NULL;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002370 struct ext4_dir_entry_2 *de;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002371 struct ext4_dir_entry_tail *t;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002372 ext4_lblk_t block = 0;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002373 unsigned int blocksize = dir->i_sb->s_blocksize;
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002374 int csum_size = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002375 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002376
Darrick J. Wongb0336e82012-04-29 18:41:10 -04002377 if (EXT4_HAS_RO_COMPAT_FEATURE(dir->i_sb,
2378 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM))
2379 csum_size = sizeof(struct ext4_dir_entry_tail);
2380
Tao Ma3c47d542012-12-10 14:05:59 -05002381 if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2382 err = ext4_try_create_inline_dir(handle, dir, inode);
2383 if (err < 0 && err != -ENOSPC)
2384 goto out;
2385 if (!err)
2386 goto out;
2387 }
2388
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002389 inode->i_size = 0;
Theodore Ts'o0f70b402013-02-15 03:35:57 -05002390 dir_block = ext4_append(handle, inode, &block);
2391 if (IS_ERR(dir_block))
2392 return PTR_ERR(dir_block);
Tao Maa774f9c2012-12-10 14:05:57 -05002393 BUFFER_TRACE(dir_block, "get_write_access");
2394 err = ext4_journal_get_write_access(handle, dir_block);
2395 if (err)
2396 goto out;
2397 de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2398 ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2399 set_nlink(inode, 2);
2400 if (csum_size) {
2401 t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2402 initialize_dirent_tail(t, blocksize);
2403 }
2404
2405 BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2406 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2407 if (err)
2408 goto out;
2409 set_buffer_verified(dir_block);
2410out:
2411 brelse(dir_block);
2412 return err;
2413}
2414
2415static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2416{
2417 handle_t *handle;
2418 struct inode *inode;
Theodore Ts'o11395752013-02-09 16:27:09 -05002419 int err, credits, retries = 0;
Tao Maa774f9c2012-12-10 14:05:57 -05002420
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002421 if (EXT4_DIR_LINK_MAX(dir))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002422 return -EMLINK;
2423
Christoph Hellwig871a2932010-03-03 09:05:07 -05002424 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002425
Theodore Ts'o11395752013-02-09 16:27:09 -05002426 credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002427 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002428retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002429 inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2430 &dentry->d_name,
2431 0, NULL, EXT4_HT_DIR, credits);
2432 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002433 err = PTR_ERR(inode);
2434 if (IS_ERR(inode))
2435 goto out_stop;
2436
Mingming Cao617ba132006-10-11 01:20:53 -07002437 inode->i_op = &ext4_dir_inode_operations;
2438 inode->i_fop = &ext4_dir_operations;
Tao Maa774f9c2012-12-10 14:05:57 -05002439 err = ext4_init_new_dir(handle, dir, inode);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002440 if (err)
2441 goto out_clear_inode;
Namhyung Kimdabd9912011-01-10 12:11:16 -05002442 err = ext4_mark_inode_dirty(handle, inode);
2443 if (!err)
2444 err = ext4_add_entry(handle, dentry, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002445 if (err) {
Aneesh Kumar K.V4cdeed82008-02-22 06:17:31 -05002446out_clear_inode:
2447 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05002448 unlock_new_inode(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002449 ext4_mark_inode_dirty(handle, inode);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002450 iput(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 goto out_stop;
2452 }
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002453 ext4_inc_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002454 ext4_update_dx_flag(dir);
Namhyung Kimdabd9912011-01-10 12:11:16 -05002455 err = ext4_mark_inode_dirty(handle, dir);
2456 if (err)
2457 goto out_clear_inode;
Al Viro6b38e842008-12-30 02:03:31 -05002458 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +04002459 d_instantiate(dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002460 if (IS_DIRSYNC(dir))
2461 ext4_handle_sync(handle);
2462
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002463out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002464 if (handle)
2465 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002466 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002467 goto retry;
2468 return err;
2469}
2470
2471/*
2472 * routine to check that the specified directory is empty (for rmdir)
2473 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002474static int empty_dir(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475{
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002476 unsigned int offset;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002477 struct buffer_head *bh;
2478 struct ext4_dir_entry_2 *de, *de1;
2479 struct super_block *sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002480 int err = 0;
2481
Tao Ma61f86632012-12-10 14:06:01 -05002482 if (ext4_has_inline_data(inode)) {
2483 int has_inline_data = 1;
2484
2485 err = empty_inline_dir(inode, &has_inline_data);
2486 if (has_inline_data)
2487 return err;
2488 }
2489
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002490 sb = inode->i_sb;
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002491 if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2492 EXT4_ERROR_INODE(inode, "invalid size");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002493 return 1;
2494 }
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002495 bh = ext4_read_dirblock(inode, 0, EITHER);
2496 if (IS_ERR(bh))
2497 return 1;
2498
Mingming Cao617ba132006-10-11 01:20:53 -07002499 de = (struct ext4_dir_entry_2 *) bh->b_data;
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002500 de1 = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002501 if (le32_to_cpu(de->inode) != inode->i_ino ||
2502 !le32_to_cpu(de1->inode) ||
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002503 strcmp(".", de->name) ||
2504 strcmp("..", de1->name)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002505 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002506 "bad directory (dir #%lu) - no `.' or `..'",
2507 inode->i_ino);
2508 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002509 return 1;
2510 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002511 offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) +
2512 ext4_rec_len_from_disk(de1->rec_len, sb->s_blocksize);
2513 de = ext4_next_entry(de1, sb->s_blocksize);
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002514 while (offset < inode->i_size) {
Dmitry Monakhov236f5ec2014-04-21 14:38:14 -04002515 if ((void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
Theodore Ts'o24676da2010-05-16 21:00:00 -04002516 unsigned int lblock;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002517 err = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002518 brelse(bh);
Theodore Ts'o24676da2010-05-16 21:00:00 -04002519 lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
Theodore Ts'odc6982f2013-02-14 23:59:26 -05002520 bh = ext4_read_dirblock(inode, lblock, EITHER);
2521 if (IS_ERR(bh))
2522 return 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002523 de = (struct ext4_dir_entry_2 *) bh->b_data;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524 }
Tao Ma226ba972012-12-10 14:05:58 -05002525 if (ext4_check_dir_entry(inode, NULL, de, bh,
2526 bh->b_data, bh->b_size, offset)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002527 de = (struct ext4_dir_entry_2 *)(bh->b_data +
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528 sb->s_blocksize);
2529 offset = (offset | (sb->s_blocksize - 1)) + 1;
2530 continue;
2531 }
2532 if (le32_to_cpu(de->inode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002533 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002534 return 0;
2535 }
Wei Yongjun3d0518f2009-02-14 23:01:36 -05002536 offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2537 de = ext4_next_entry(de, sb->s_blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002538 }
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002539 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540 return 1;
2541}
2542
Jan Karad745a8c2014-05-26 11:56:53 -04002543/*
2544 * ext4_orphan_add() links an unlinked or truncated inode into a list of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002545 * such inodes, starting at the superblock, in case we crash before the
2546 * file is closed/deleted, or in case the inode truncate spans multiple
2547 * transactions and the last transaction is not recovered after a crash.
2548 *
2549 * At filesystem recovery time, we walk this list deleting unlinked
Mingming Cao617ba132006-10-11 01:20:53 -07002550 * inodes and truncating linked inodes in ext4_orphan_cleanup().
Jan Karad745a8c2014-05-26 11:56:53 -04002551 *
2552 * Orphan list manipulation functions must be called under i_mutex unless
2553 * we are just creating the inode or deleting it.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002554 */
Mingming Cao617ba132006-10-11 01:20:53 -07002555int ext4_orphan_add(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002556{
2557 struct super_block *sb = inode->i_sb;
Jan Karacd2c0802014-05-26 11:39:17 -04002558 struct ext4_sb_info *sbi = EXT4_SB(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002559 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002560 int err = 0, rc;
Jan Karad745a8c2014-05-26 11:56:53 -04002561 bool dirty = false;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002562
Jan Karacd2c0802014-05-26 11:39:17 -04002563 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05002564 return 0;
2565
Jan Karad745a8c2014-05-26 11:56:53 -04002566 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2567 !mutex_is_locked(&inode->i_mutex));
2568 /*
2569 * Exit early if inode already is on orphan list. This is a big speedup
2570 * since we don't have to contend on the global s_orphan_lock.
2571 */
Mingming Cao617ba132006-10-11 01:20:53 -07002572 if (!list_empty(&EXT4_I(inode)->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002573 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574
Lukas Czernerafb86172011-07-11 18:47:04 -04002575 /*
2576 * Orphan handling is only valid for files with data blocks
2577 * being truncated, or files being unlinked. Note that we either
2578 * hold i_mutex, or the inode can not be referenced from outside,
2579 * so i_nlink should not be bumped due to race
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002580 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002581 J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2582 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002583
Jan Karacd2c0802014-05-26 11:39:17 -04002584 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2585 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002586 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002587 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002588
Mingming Cao617ba132006-10-11 01:20:53 -07002589 err = ext4_reserve_inode_write(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002590 if (err)
Jan Karad745a8c2014-05-26 11:56:53 -04002591 goto out;
2592
2593 mutex_lock(&sbi->s_orphan_lock);
Dmitry Monakhov6e3617e2010-03-01 23:29:39 -05002594 /*
2595 * Due to previous errors inode may be already a part of on-disk
2596 * orphan list. If so skip on-disk list modification.
2597 */
Jan Karad745a8c2014-05-26 11:56:53 -04002598 if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2599 (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2600 /* Insert this inode at the head of the on-disk orphan list */
2601 NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2602 sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2603 dirty = true;
2604 }
2605 list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2606 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002607
Jan Karad745a8c2014-05-26 11:56:53 -04002608 if (dirty) {
2609 err = ext4_handle_dirty_super(handle, sb);
2610 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2611 if (!err)
2612 err = rc;
2613 if (err) {
2614 /*
2615 * We have to remove inode from in-memory list if
2616 * addition to on disk orphan list failed. Stray orphan
2617 * list entries can cause panics at unmount time.
2618 */
2619 mutex_lock(&sbi->s_orphan_lock);
2620 list_del(&EXT4_I(inode)->i_orphan);
2621 mutex_unlock(&sbi->s_orphan_lock);
2622 }
2623 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002624 jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2625 jbd_debug(4, "orphan inode %lu will point to %d\n",
2626 inode->i_ino, NEXT_ORPHAN(inode));
Jan Karad745a8c2014-05-26 11:56:53 -04002627out:
Jan Karacd2c0802014-05-26 11:39:17 -04002628 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002629 return err;
2630}
2631
2632/*
Mingming Cao617ba132006-10-11 01:20:53 -07002633 * ext4_orphan_del() removes an unlinked or truncated inode from the list
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002634 * of such inodes stored on disk, because it is finally being cleaned up.
2635 */
Mingming Cao617ba132006-10-11 01:20:53 -07002636int ext4_orphan_del(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002637{
2638 struct list_head *prev;
Mingming Cao617ba132006-10-11 01:20:53 -07002639 struct ext4_inode_info *ei = EXT4_I(inode);
Jan Karacd2c0802014-05-26 11:39:17 -04002640 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002641 __u32 ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002642 struct ext4_iloc iloc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002643 int err = 0;
2644
Jan Karacd2c0802014-05-26 11:39:17 -04002645 if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
Frank Mayhar03901312009-01-07 00:06:22 -05002646 return 0;
2647
Jan Karad745a8c2014-05-26 11:56:53 -04002648 WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2649 !mutex_is_locked(&inode->i_mutex));
2650 /* Do this quick check before taking global s_orphan_lock. */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002651 if (list_empty(&ei->i_orphan))
Jan Karad745a8c2014-05-26 11:56:53 -04002652 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002653
Jan Karad745a8c2014-05-26 11:56:53 -04002654 if (handle) {
2655 /* Grab inode buffer early before taking global s_orphan_lock */
2656 err = ext4_reserve_inode_write(handle, inode, &iloc);
2657 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002658
Jan Karad745a8c2014-05-26 11:56:53 -04002659 mutex_lock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002660 jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2661
Jan Karad745a8c2014-05-26 11:56:53 -04002662 prev = ei->i_orphan.prev;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002663 list_del_init(&ei->i_orphan);
2664
2665 /* If we're on an error path, we may not have a valid
2666 * transaction handle with which to update the orphan list on
2667 * disk, but we still need to remove the inode from the linked
2668 * list in memory. */
Jan Karad745a8c2014-05-26 11:56:53 -04002669 if (!handle || err) {
2670 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002671 goto out_err;
Jan Karad745a8c2014-05-26 11:56:53 -04002672 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002673
Jan Karad745a8c2014-05-26 11:56:53 -04002674 ino_next = NEXT_ORPHAN(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002675 if (prev == &sbi->s_orphan) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002676 jbd_debug(4, "superblock will point to %u\n", ino_next);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002677 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -07002678 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
Jan Karad745a8c2014-05-26 11:56:53 -04002679 if (err) {
2680 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002681 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002682 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002683 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
Jan Karad745a8c2014-05-26 11:56:53 -04002684 mutex_unlock(&sbi->s_orphan_lock);
Artem Bityutskiyb50924c2012-07-22 20:37:31 -04002685 err = ext4_handle_dirty_super(handle, inode->i_sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002686 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002687 struct ext4_iloc iloc2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688 struct inode *i_prev =
Mingming Cao617ba132006-10-11 01:20:53 -07002689 &list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002691 jbd_debug(4, "orphan inode %lu will point to %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692 i_prev->i_ino, ino_next);
Mingming Cao617ba132006-10-11 01:20:53 -07002693 err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002694 if (err) {
2695 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002696 goto out_brelse;
Jan Karad745a8c2014-05-26 11:56:53 -04002697 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002698 NEXT_ORPHAN(i_prev) = ino_next;
Mingming Cao617ba132006-10-11 01:20:53 -07002699 err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
Jan Karad745a8c2014-05-26 11:56:53 -04002700 mutex_unlock(&sbi->s_orphan_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 }
2702 if (err)
2703 goto out_brelse;
2704 NEXT_ORPHAN(inode) = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002705 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706out_err:
Mingming Cao617ba132006-10-11 01:20:53 -07002707 ext4_std_error(inode->i_sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708 return err;
2709
2710out_brelse:
2711 brelse(iloc.bh);
2712 goto out_err;
2713}
2714
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002715static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002716{
2717 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002718 struct inode *inode;
2719 struct buffer_head *bh;
2720 struct ext4_dir_entry_2 *de;
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002721 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002722
2723 /* Initialize quotas before so that eventual writes go in
2724 * separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002725 dquot_initialize(dir);
2726 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002727
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002728 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002729 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002730 if (!bh)
2731 goto end_rmdir;
2732
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002733 inode = dentry->d_inode;
2734
2735 retval = -EIO;
2736 if (le32_to_cpu(de->inode) != inode->i_ino)
2737 goto end_rmdir;
2738
2739 retval = -ENOTEMPTY;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002740 if (!empty_dir(inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002741 goto end_rmdir;
2742
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002743 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002744 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002745 if (IS_ERR(handle)) {
2746 retval = PTR_ERR(handle);
2747 handle = NULL;
2748 goto end_rmdir;
2749 }
2750
2751 if (IS_DIRSYNC(dir))
2752 ext4_handle_sync(handle);
2753
Mingming Cao617ba132006-10-11 01:20:53 -07002754 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002755 if (retval)
2756 goto end_rmdir;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002757 if (!EXT4_DIR_LINK_EMPTY(inode))
Eric Sandeen12062dd2010-02-15 14:19:27 -05002758 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002759 "empty directory has too many links (%d)",
2760 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002761 inode->i_version++;
2762 clear_nlink(inode);
2763 /* There's no need to set i_disksize: the fact that i_nlink is
2764 * zero will ensure that the right thing happens during any
2765 * recovery. */
2766 inode->i_size = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002767 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002768 inode->i_ctime = dir->i_ctime = dir->i_mtime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002769 ext4_mark_inode_dirty(handle, inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002770 ext4_dec_count(handle, dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002771 ext4_update_dx_flag(dir);
2772 ext4_mark_inode_dirty(handle, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002773
2774end_rmdir:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002775 brelse(bh);
Theodore Ts'o8dcfaad2013-02-09 09:45:11 -05002776 if (handle)
2777 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778 return retval;
2779}
2780
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002781static int ext4_unlink(struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002782{
2783 int retval;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002784 struct inode *inode;
2785 struct buffer_head *bh;
2786 struct ext4_dir_entry_2 *de;
Theodore Ts'o931b6862013-02-09 09:43:39 -05002787 handle_t *handle = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002788
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002789 trace_ext4_unlink_enter(dir, dentry);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002790 /* Initialize quotas before so that eventual writes go
2791 * in separate transaction */
Christoph Hellwig871a2932010-03-03 09:05:07 -05002792 dquot_initialize(dir);
2793 dquot_initialize(dentry->d_inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002794
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002795 retval = -ENOENT;
Tao Ma32f7f222012-12-10 14:06:01 -05002796 bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002797 if (!bh)
2798 goto end_unlink;
2799
2800 inode = dentry->d_inode;
2801
2802 retval = -EIO;
2803 if (le32_to_cpu(de->inode) != inode->i_ino)
2804 goto end_unlink;
2805
Theodore Ts'o931b6862013-02-09 09:43:39 -05002806 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Theodore Ts'o64044ab2013-02-09 15:06:24 -05002807 EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
Theodore Ts'o931b6862013-02-09 09:43:39 -05002808 if (IS_ERR(handle)) {
2809 retval = PTR_ERR(handle);
2810 handle = NULL;
2811 goto end_unlink;
2812 }
2813
2814 if (IS_DIRSYNC(dir))
2815 ext4_handle_sync(handle);
2816
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002817 if (!inode->i_nlink) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002818 ext4_warning(inode->i_sb,
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002819 "Deleting nonexistent file (%lu), %d",
2820 inode->i_ino, inode->i_nlink);
Miklos Szeredibfe86842011-10-28 14:13:29 +02002821 set_nlink(inode, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002822 }
Mingming Cao617ba132006-10-11 01:20:53 -07002823 retval = ext4_delete_entry(handle, dir, de, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824 if (retval)
2825 goto end_unlink;
Kalpak Shahef7f3832007-07-18 09:15:20 -04002826 dir->i_ctime = dir->i_mtime = ext4_current_time(dir);
Mingming Cao617ba132006-10-11 01:20:53 -07002827 ext4_update_dx_flag(dir);
2828 ext4_mark_inode_dirty(handle, dir);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002829 drop_nlink(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002830 if (!inode->i_nlink)
Mingming Cao617ba132006-10-11 01:20:53 -07002831 ext4_orphan_add(handle, inode);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002832 inode->i_ctime = ext4_current_time(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002833 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002834 retval = 0;
2835
2836end_unlink:
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002837 brelse(bh);
Theodore Ts'o931b6862013-02-09 09:43:39 -05002838 if (handle)
2839 ext4_journal_stop(handle);
Jiaying Zhang0562e0b2011-03-21 21:38:05 -04002840 trace_ext4_unlink_exit(dentry, retval);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002841 return retval;
2842}
2843
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002844static int ext4_symlink(struct inode *dir,
2845 struct dentry *dentry, const char *symname)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002846{
2847 handle_t *handle;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002848 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002849 int l, err, retries = 0;
Jan Karadf5e6222011-05-03 11:12:58 -04002850 int credits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002851
2852 l = strlen(symname)+1;
2853 if (l > dir->i_sb->s_blocksize)
2854 return -ENAMETOOLONG;
2855
Christoph Hellwig871a2932010-03-03 09:05:07 -05002856 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002857
Jan Karadf5e6222011-05-03 11:12:58 -04002858 if (l > EXT4_N_BLOCKS * 4) {
2859 /*
2860 * For non-fast symlinks, we just allocate inode and put it on
2861 * orphan list in the first transaction => we need bitmap,
Eric Sandeen8c208712011-08-11 09:54:31 -05002862 * group descriptor, sb, inode block, quota blocks, and
2863 * possibly selinux xattr blocks.
Jan Karadf5e6222011-05-03 11:12:58 -04002864 */
Eric Sandeen8c208712011-08-11 09:54:31 -05002865 credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2866 EXT4_XATTR_TRANS_BLOCKS;
Jan Karadf5e6222011-05-03 11:12:58 -04002867 } else {
2868 /*
2869 * Fast symlink. We have to add entry to directory
2870 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
2871 * allocate new inode (bitmap, group descriptor, inode block,
2872 * quota blocks, sb is already counted in previous macros).
2873 */
2874 credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Jan Karaeb9cc7e2013-04-19 13:38:14 -04002875 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
Jan Karadf5e6222011-05-03 11:12:58 -04002876 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002877retry:
Theodore Ts'o11395752013-02-09 16:27:09 -05002878 inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
2879 &dentry->d_name, 0, NULL,
2880 EXT4_HT_DIR, credits);
2881 handle = ext4_journal_current_handle();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002882 err = PTR_ERR(inode);
2883 if (IS_ERR(inode))
2884 goto out_stop;
2885
Jan Karadf5e6222011-05-03 11:12:58 -04002886 if (l > EXT4_N_BLOCKS * 4) {
Mingming Cao617ba132006-10-11 01:20:53 -07002887 inode->i_op = &ext4_symlink_inode_operations;
2888 ext4_set_aops(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002889 /*
Jan Karadf5e6222011-05-03 11:12:58 -04002890 * We cannot call page_symlink() with transaction started
2891 * because it calls into ext4_write_begin() which can wait
2892 * for transaction commit if we are running out of space
2893 * and thus we deadlock. So we have to stop transaction now
2894 * and restart it when symlink contents is written.
2895 *
2896 * To keep fs consistent in case of crash, we have to put inode
2897 * to orphan list in the mean time.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002898 */
Jan Karadf5e6222011-05-03 11:12:58 -04002899 drop_nlink(inode);
2900 err = ext4_orphan_add(handle, inode);
2901 ext4_journal_stop(handle);
2902 if (err)
2903 goto err_drop_inode;
Nick Piggin54566b22009-01-04 12:00:53 -08002904 err = __page_symlink(inode, symname, l, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002905 if (err)
2906 goto err_drop_inode;
2907 /*
2908 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
2909 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
2910 */
Theodore Ts'o9924a922013-02-08 21:59:22 -05002911 handle = ext4_journal_start(dir, EXT4_HT_DIR,
Jan Karadf5e6222011-05-03 11:12:58 -04002912 EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2913 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
2914 if (IS_ERR(handle)) {
2915 err = PTR_ERR(handle);
2916 goto err_drop_inode;
2917 }
Al Viro0ce8c0102012-01-08 19:50:23 -05002918 set_nlink(inode, 1);
Jan Karadf5e6222011-05-03 11:12:58 -04002919 err = ext4_orphan_del(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002920 if (err) {
Jan Karadf5e6222011-05-03 11:12:58 -04002921 ext4_journal_stop(handle);
Theodore Ts'o825f1482008-02-15 15:00:38 -05002922 clear_nlink(inode);
Jan Karadf5e6222011-05-03 11:12:58 -04002923 goto err_drop_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002924 }
2925 } else {
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04002926 /* clear the extent format for fast symlink */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002927 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
Mingming Cao617ba132006-10-11 01:20:53 -07002928 inode->i_op = &ext4_fast_symlink_inode_operations;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002929 memcpy((char *)&EXT4_I(inode)->i_data, symname, l);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002930 inode->i_size = l-1;
2931 }
Mingming Cao617ba132006-10-11 01:20:53 -07002932 EXT4_I(inode)->i_disksize = inode->i_size;
2933 err = ext4_add_nondir(handle, dentry, inode);
Theodore Ts'o11395752013-02-09 16:27:09 -05002934 if (!err && IS_DIRSYNC(dir))
2935 ext4_handle_sync(handle);
2936
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002937out_stop:
Theodore Ts'o11395752013-02-09 16:27:09 -05002938 if (handle)
2939 ext4_journal_stop(handle);
Mingming Cao617ba132006-10-11 01:20:53 -07002940 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002941 goto retry;
2942 return err;
Jan Karadf5e6222011-05-03 11:12:58 -04002943err_drop_inode:
2944 unlock_new_inode(inode);
2945 iput(inode);
2946 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002947}
2948
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04002949static int ext4_link(struct dentry *old_dentry,
2950 struct inode *dir, struct dentry *dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002951{
2952 handle_t *handle;
2953 struct inode *inode = old_dentry->d_inode;
2954 int err, retries = 0;
2955
Theodore Ts'ob05ab1d2009-08-29 21:08:08 -04002956 if (inode->i_nlink >= EXT4_LINK_MAX)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 return -EMLINK;
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002958
Christoph Hellwig871a2932010-03-03 09:05:07 -05002959 dquot_initialize(dir);
Christoph Hellwig907f4552010-03-03 09:05:06 -05002960
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002961retry:
Theodore Ts'o9924a922013-02-08 21:59:22 -05002962 handle = ext4_journal_start(dir, EXT4_HT_DIR,
2963 (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
Al Viroaf51a2a2013-06-29 13:23:08 +04002964 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002965 if (IS_ERR(handle))
2966 return PTR_ERR(handle);
2967
2968 if (IS_DIRSYNC(dir))
Frank Mayhar03901312009-01-07 00:06:22 -05002969 ext4_handle_sync(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970
Kalpak Shahef7f3832007-07-18 09:15:20 -04002971 inode->i_ctime = ext4_current_time(inode);
Andreas Dilgerf8628a12007-07-18 08:38:01 -04002972 ext4_inc_count(handle, inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -04002973 ihold(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002974
Al Viro6b38e842008-12-30 02:03:31 -05002975 err = ext4_add_entry(handle, dentry, inode);
2976 if (!err) {
2977 ext4_mark_inode_dirty(handle, inode);
Al Viroaf51a2a2013-06-29 13:23:08 +04002978 /* this can happen only for tmpfile being
2979 * linked the first time
2980 */
2981 if (inode->i_nlink == 1)
2982 ext4_orphan_del(handle, inode);
Al Viro6b38e842008-12-30 02:03:31 -05002983 d_instantiate(dentry, inode);
2984 } else {
2985 drop_nlink(inode);
2986 iput(inode);
2987 }
Mingming Cao617ba132006-10-11 01:20:53 -07002988 ext4_journal_stop(handle);
2989 if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 goto retry;
2991 return err;
2992}
2993
Tao Ma32f7f222012-12-10 14:06:01 -05002994
2995/*
2996 * Try to find buffer head where contains the parent block.
2997 * It should be the inode block if it is inlined or the 1st block
2998 * if it is a normal dir.
2999 */
3000static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
3001 struct inode *inode,
3002 int *retval,
3003 struct ext4_dir_entry_2 **parent_de,
3004 int *inlined)
3005{
3006 struct buffer_head *bh;
3007
3008 if (!ext4_has_inline_data(inode)) {
Theodore Ts'odc6982f2013-02-14 23:59:26 -05003009 bh = ext4_read_dirblock(inode, 0, EITHER);
3010 if (IS_ERR(bh)) {
3011 *retval = PTR_ERR(bh);
Tao Ma32f7f222012-12-10 14:06:01 -05003012 return NULL;
3013 }
3014 *parent_de = ext4_next_entry(
3015 (struct ext4_dir_entry_2 *)bh->b_data,
3016 inode->i_sb->s_blocksize);
3017 return bh;
3018 }
3019
3020 *inlined = 1;
3021 return ext4_get_first_inline_block(inode, parent_de, retval);
3022}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003023
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003024struct ext4_renament {
3025 struct inode *dir;
3026 struct dentry *dentry;
3027 struct inode *inode;
Miklos Szeredibd429982014-04-01 17:08:44 +02003028 bool is_dir;
3029 int dir_nlink_delta;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003030
3031 /* entry for "dentry" */
3032 struct buffer_head *bh;
3033 struct ext4_dir_entry_2 *de;
3034 int inlined;
3035
3036 /* entry for ".." in inode if it's a directory */
3037 struct buffer_head *dir_bh;
3038 struct ext4_dir_entry_2 *parent_de;
3039 int dir_inlined;
3040};
3041
Miklos Szeredibd1af142014-04-01 17:08:44 +02003042static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3043{
3044 int retval;
3045
3046 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3047 &retval, &ent->parent_de,
3048 &ent->dir_inlined);
3049 if (!ent->dir_bh)
3050 return retval;
3051 if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3052 return -EIO;
3053 BUFFER_TRACE(ent->dir_bh, "get_write_access");
3054 return ext4_journal_get_write_access(handle, ent->dir_bh);
3055}
3056
3057static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3058 unsigned dir_ino)
3059{
3060 int retval;
3061
3062 ent->parent_de->inode = cpu_to_le32(dir_ino);
3063 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3064 if (!ent->dir_inlined) {
3065 if (is_dx(ent->inode)) {
3066 retval = ext4_handle_dirty_dx_node(handle,
3067 ent->inode,
3068 ent->dir_bh);
3069 } else {
3070 retval = ext4_handle_dirty_dirent_node(handle,
3071 ent->inode,
3072 ent->dir_bh);
3073 }
3074 } else {
3075 retval = ext4_mark_inode_dirty(handle, ent->inode);
3076 }
3077 if (retval) {
3078 ext4_std_error(ent->dir->i_sb, retval);
3079 return retval;
3080 }
3081 return 0;
3082}
3083
3084static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3085 unsigned ino, unsigned file_type)
3086{
3087 int retval;
3088
3089 BUFFER_TRACE(ent->bh, "get write access");
3090 retval = ext4_journal_get_write_access(handle, ent->bh);
3091 if (retval)
3092 return retval;
3093 ent->de->inode = cpu_to_le32(ino);
3094 if (EXT4_HAS_INCOMPAT_FEATURE(ent->dir->i_sb,
3095 EXT4_FEATURE_INCOMPAT_FILETYPE))
3096 ent->de->file_type = file_type;
3097 ent->dir->i_version++;
3098 ent->dir->i_ctime = ent->dir->i_mtime =
3099 ext4_current_time(ent->dir);
3100 ext4_mark_inode_dirty(handle, ent->dir);
3101 BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3102 if (!ent->inlined) {
3103 retval = ext4_handle_dirty_dirent_node(handle,
3104 ent->dir, ent->bh);
3105 if (unlikely(retval)) {
3106 ext4_std_error(ent->dir->i_sb, retval);
3107 return retval;
3108 }
3109 }
3110 brelse(ent->bh);
3111 ent->bh = NULL;
3112
3113 return 0;
3114}
3115
3116static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3117 const struct qstr *d_name)
3118{
3119 int retval = -ENOENT;
3120 struct buffer_head *bh;
3121 struct ext4_dir_entry_2 *de;
3122
3123 bh = ext4_find_entry(dir, d_name, &de, NULL);
3124 if (bh) {
3125 retval = ext4_delete_entry(handle, dir, de, bh);
3126 brelse(bh);
3127 }
3128 return retval;
3129}
3130
3131static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent)
3132{
3133 int retval;
3134 /*
3135 * ent->de could have moved from under us during htree split, so make
3136 * sure that we are deleting the right entry. We might also be pointing
3137 * to a stale entry in the unused part of ent->bh so just checking inum
3138 * and the name isn't enough.
3139 */
3140 if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3141 ent->de->name_len != ent->dentry->d_name.len ||
3142 strncmp(ent->de->name, ent->dentry->d_name.name,
3143 ent->de->name_len)) {
3144 retval = ext4_find_delete_entry(handle, ent->dir,
3145 &ent->dentry->d_name);
3146 } else {
3147 retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3148 if (retval == -ENOENT) {
3149 retval = ext4_find_delete_entry(handle, ent->dir,
3150 &ent->dentry->d_name);
3151 }
3152 }
3153
3154 if (retval) {
3155 ext4_warning(ent->dir->i_sb,
3156 "Deleting old file (%lu), %d, error=%d",
3157 ent->dir->i_ino, ent->dir->i_nlink, retval);
3158 }
3159}
3160
Miklos Szeredibd429982014-04-01 17:08:44 +02003161static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3162{
3163 if (ent->dir_nlink_delta) {
3164 if (ent->dir_nlink_delta == -1)
3165 ext4_dec_count(handle, ent->dir);
3166 else
3167 ext4_inc_count(handle, ent->dir);
3168 ext4_mark_inode_dirty(handle, ent->dir);
3169 }
3170}
3171
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003172/*
3173 * Anybody can rename anything with this: the permission checks are left to the
3174 * higher-level routines.
Theodore Ts'o0e202702013-08-16 22:06:53 -04003175 *
3176 * n.b. old_{dentry,inode) refers to the source dentry/inode
3177 * while new_{dentry,inode) refers to the destination dentry/inode
3178 * This comes from rename(const char *oldpath, const char *newpath)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003179 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04003180static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
3181 struct inode *new_dir, struct dentry *new_dentry)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003182{
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003183 handle_t *handle = NULL;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003184 struct ext4_renament old = {
3185 .dir = old_dir,
3186 .dentry = old_dentry,
3187 .inode = old_dentry->d_inode,
3188 };
3189 struct ext4_renament new = {
3190 .dir = new_dir,
3191 .dentry = new_dentry,
3192 .inode = new_dentry->d_inode,
3193 };
Theodore Ts'o0e202702013-08-16 22:06:53 -04003194 int retval;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003195
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003196 dquot_initialize(old.dir);
3197 dquot_initialize(new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003198
3199 /* Initialize quotas before so that eventual writes go
3200 * in separate transaction */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003201 if (new.inode)
3202 dquot_initialize(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003203
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003204 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205 /*
3206 * Check for inode number is _not_ due to possible IO errors.
3207 * We might rmdir the source, keep it as pwd of some process
3208 * and merrily kill the link to whatever was created under the
3209 * same name. Goodbye sticky bit ;-<
3210 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 retval = -ENOENT;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003212 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003213 goto end_rename;
3214
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003215 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3216 &new.de, &new.inlined);
3217 if (new.bh) {
3218 if (!new.inode) {
3219 brelse(new.bh);
3220 new.bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003221 }
3222 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003223 if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3224 ext4_alloc_da_blocks(old.inode);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003225
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003226 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3227 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003228 EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3229 if (IS_ERR(handle))
3230 return PTR_ERR(handle);
3231
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003232 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003233 ext4_handle_sync(handle);
3234
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003235 if (S_ISDIR(old.inode->i_mode)) {
3236 if (new.inode) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003237 retval = -ENOTEMPTY;
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003238 if (!empty_dir(new.inode))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003239 goto end_rename;
Miklos Szeredi0d7d5d62014-04-01 17:08:44 +02003240 } else {
3241 retval = -EMLINK;
3242 if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3243 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244 }
Miklos Szeredibd1af142014-04-01 17:08:44 +02003245 retval = ext4_rename_dir_prepare(handle, &old);
Amir Goldsteinef607892011-03-20 21:18:44 -04003246 if (retval)
3247 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003248 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003249 if (!new.bh) {
3250 retval = ext4_add_entry(handle, new.dentry, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 if (retval)
3252 goto end_rename;
3253 } else {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003254 retval = ext4_setent(handle, &new,
3255 old.inode->i_ino, old.de->file_type);
Amir Goldsteinef607892011-03-20 21:18:44 -04003256 if (retval)
3257 goto end_rename;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003258 }
3259
3260 /*
3261 * Like most other Unix systems, set the ctime for inodes on a
3262 * rename.
3263 */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003264 old.inode->i_ctime = ext4_current_time(old.inode);
3265 ext4_mark_inode_dirty(handle, old.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003266
3267 /*
3268 * ok, that's it
3269 */
Miklos Szeredibd1af142014-04-01 17:08:44 +02003270 ext4_rename_delete(handle, &old);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003271
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003272 if (new.inode) {
3273 ext4_dec_count(handle, new.inode);
3274 new.inode->i_ctime = ext4_current_time(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003275 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003276 old.dir->i_ctime = old.dir->i_mtime = ext4_current_time(old.dir);
3277 ext4_update_dx_flag(old.dir);
3278 if (old.dir_bh) {
Miklos Szeredibd1af142014-04-01 17:08:44 +02003279 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3280 if (retval)
Theodore Ts'ob4097142011-01-10 12:46:59 -05003281 goto end_rename;
Miklos Szeredibd1af142014-04-01 17:08:44 +02003282
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003283 ext4_dec_count(handle, old.dir);
3284 if (new.inode) {
Andreas Dilgerf8628a12007-07-18 08:38:01 -04003285 /* checked empty_dir above, can't have another parent,
Theodore Ts'o825f1482008-02-15 15:00:38 -05003286 * ext4_dec_count() won't work for many-linked dirs */
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003287 clear_nlink(new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003288 } else {
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003289 ext4_inc_count(handle, new.dir);
3290 ext4_update_dx_flag(new.dir);
3291 ext4_mark_inode_dirty(handle, new.dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003292 }
3293 }
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003294 ext4_mark_inode_dirty(handle, old.dir);
3295 if (new.inode) {
3296 ext4_mark_inode_dirty(handle, new.inode);
3297 if (!new.inode->i_nlink)
3298 ext4_orphan_add(handle, new.inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003299 }
3300 retval = 0;
3301
3302end_rename:
Miklos Szeredic0d268c2014-04-01 17:08:43 +02003303 brelse(old.dir_bh);
3304 brelse(old.bh);
3305 brelse(new.bh);
Theodore Ts'o5b61de72013-08-16 22:06:14 -04003306 if (handle)
3307 ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 return retval;
3309}
3310
Miklos Szeredibd429982014-04-01 17:08:44 +02003311static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3312 struct inode *new_dir, struct dentry *new_dentry)
3313{
3314 handle_t *handle = NULL;
3315 struct ext4_renament old = {
3316 .dir = old_dir,
3317 .dentry = old_dentry,
3318 .inode = old_dentry->d_inode,
3319 };
3320 struct ext4_renament new = {
3321 .dir = new_dir,
3322 .dentry = new_dentry,
3323 .inode = new_dentry->d_inode,
3324 };
3325 u8 new_file_type;
3326 int retval;
3327
3328 dquot_initialize(old.dir);
3329 dquot_initialize(new.dir);
3330
3331 old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3332 &old.de, &old.inlined);
3333 /*
3334 * Check for inode number is _not_ due to possible IO errors.
3335 * We might rmdir the source, keep it as pwd of some process
3336 * and merrily kill the link to whatever was created under the
3337 * same name. Goodbye sticky bit ;-<
3338 */
3339 retval = -ENOENT;
3340 if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3341 goto end_rename;
3342
3343 new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3344 &new.de, &new.inlined);
3345
3346 /* RENAME_EXCHANGE case: old *and* new must both exist */
3347 if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3348 goto end_rename;
3349
3350 handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3351 (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3352 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3353 if (IS_ERR(handle))
3354 return PTR_ERR(handle);
3355
3356 if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3357 ext4_handle_sync(handle);
3358
3359 if (S_ISDIR(old.inode->i_mode)) {
3360 old.is_dir = true;
3361 retval = ext4_rename_dir_prepare(handle, &old);
3362 if (retval)
3363 goto end_rename;
3364 }
3365 if (S_ISDIR(new.inode->i_mode)) {
3366 new.is_dir = true;
3367 retval = ext4_rename_dir_prepare(handle, &new);
3368 if (retval)
3369 goto end_rename;
3370 }
3371
3372 /*
3373 * Other than the special case of overwriting a directory, parents'
3374 * nlink only needs to be modified if this is a cross directory rename.
3375 */
3376 if (old.dir != new.dir && old.is_dir != new.is_dir) {
3377 old.dir_nlink_delta = old.is_dir ? -1 : 1;
3378 new.dir_nlink_delta = -old.dir_nlink_delta;
3379 retval = -EMLINK;
3380 if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3381 (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3382 goto end_rename;
3383 }
3384
3385 new_file_type = new.de->file_type;
3386 retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3387 if (retval)
3388 goto end_rename;
3389
3390 retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3391 if (retval)
3392 goto end_rename;
3393
3394 /*
3395 * Like most other Unix systems, set the ctime for inodes on a
3396 * rename.
3397 */
3398 old.inode->i_ctime = ext4_current_time(old.inode);
3399 new.inode->i_ctime = ext4_current_time(new.inode);
3400 ext4_mark_inode_dirty(handle, old.inode);
3401 ext4_mark_inode_dirty(handle, new.inode);
3402
3403 if (old.dir_bh) {
3404 retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3405 if (retval)
3406 goto end_rename;
3407 }
3408 if (new.dir_bh) {
3409 retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3410 if (retval)
3411 goto end_rename;
3412 }
3413 ext4_update_dir_count(handle, &old);
3414 ext4_update_dir_count(handle, &new);
3415 retval = 0;
3416
3417end_rename:
3418 brelse(old.dir_bh);
3419 brelse(new.dir_bh);
3420 brelse(old.bh);
3421 brelse(new.bh);
3422 if (handle)
3423 ext4_journal_stop(handle);
3424 return retval;
3425}
3426
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003427static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3428 struct inode *new_dir, struct dentry *new_dentry,
3429 unsigned int flags)
3430{
Miklos Szeredibd429982014-04-01 17:08:44 +02003431 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003432 return -EINVAL;
3433
Miklos Szeredibd429982014-04-01 17:08:44 +02003434 if (flags & RENAME_EXCHANGE) {
3435 return ext4_cross_rename(old_dir, old_dentry,
3436 new_dir, new_dentry);
3437 }
3438 /*
3439 * Existence checking was done by the VFS, otherwise "RENAME_NOREPLACE"
3440 * is equivalent to regular rename.
3441 */
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003442 return ext4_rename(old_dir, old_dentry, new_dir, new_dentry);
3443}
3444
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003445/*
3446 * directories can handle most operations...
3447 */
Arjan van de Ven754661f2007-02-12 00:55:38 -08003448const struct inode_operations ext4_dir_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003449 .create = ext4_create,
3450 .lookup = ext4_lookup,
3451 .link = ext4_link,
3452 .unlink = ext4_unlink,
3453 .symlink = ext4_symlink,
3454 .mkdir = ext4_mkdir,
3455 .rmdir = ext4_rmdir,
3456 .mknod = ext4_mknod,
Al Viroaf51a2a2013-06-29 13:23:08 +04003457 .tmpfile = ext4_tmpfile,
Mingming Cao617ba132006-10-11 01:20:53 -07003458 .rename = ext4_rename,
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02003459 .rename2 = ext4_rename2,
Mingming Cao617ba132006-10-11 01:20:53 -07003460 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003461 .setxattr = generic_setxattr,
3462 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003463 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003464 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003465 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003466 .set_acl = ext4_set_acl,
Aneesh Kumar K.Vabc87462009-05-02 22:54:32 -04003467 .fiemap = ext4_fiemap,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003468};
3469
Arjan van de Ven754661f2007-02-12 00:55:38 -08003470const struct inode_operations ext4_special_inode_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07003471 .setattr = ext4_setattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 .setxattr = generic_setxattr,
3473 .getxattr = generic_getxattr,
Mingming Cao617ba132006-10-11 01:20:53 -07003474 .listxattr = ext4_listxattr,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003475 .removexattr = generic_removexattr,
Christoph Hellwig4e34e712011-07-23 17:37:31 +02003476 .get_acl = ext4_get_acl,
Christoph Hellwig64e178a2013-12-20 05:16:44 -08003477 .set_acl = ext4_set_acl,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003478};