• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  linux/fs/ext4/namei.c
4  *
5  * Copyright (C) 1992, 1993, 1994, 1995
6  * Remy Card (card@masi.ibp.fr)
7  * Laboratoire MASI - Institut Blaise Pascal
8  * Universite Pierre et Marie Curie (Paris VI)
9  *
10  *  from
11  *
12  *  linux/fs/minix/namei.c
13  *
14  *  Copyright (C) 1991, 1992  Linus Torvalds
15  *
16  *  Big-endian to little-endian byte-swapping/bitmaps by
17  *        David S. Miller (davem@caip.rutgers.edu), 1995
18  *  Directory entry file type support and forward compatibility hooks
19  *	for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
20  *  Hash Tree Directory indexing (c)
21  *	Daniel Phillips, 2001
22  *  Hash Tree Directory indexing porting
23  *	Christopher Li, 2002
24  *  Hash Tree Directory indexing cleanup
25  *	Theodore Ts'o, 2002
26  */
27 
28 #include <linux/fs.h>
29 #include <linux/pagemap.h>
30 #include <linux/time.h>
31 #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>
37 #include "ext4.h"
38 #include "ext4_jbd2.h"
39 
40 #include "xattr.h"
41 #include "acl.h"
42 
43 #include <trace/events/ext4.h>
44 /*
45  * define how far ahead to read directories while searching them.
46  */
47 #define NAMEI_RA_CHUNKS  2
48 #define NAMEI_RA_BLOCKS  4
49 #define NAMEI_RA_SIZE	     (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
50 
ext4_append(handle_t * handle,struct inode * inode,ext4_lblk_t * block)51 static struct buffer_head *ext4_append(handle_t *handle,
52 					struct inode *inode,
53 					ext4_lblk_t *block)
54 {
55 	struct buffer_head *bh;
56 	int err;
57 
58 	if (unlikely(EXT4_SB(inode->i_sb)->s_max_dir_size_kb &&
59 		     ((inode->i_size >> 10) >=
60 		      EXT4_SB(inode->i_sb)->s_max_dir_size_kb)))
61 		return ERR_PTR(-ENOSPC);
62 
63 	*block = inode->i_size >> inode->i_sb->s_blocksize_bits;
64 
65 	bh = ext4_bread(handle, inode, *block, EXT4_GET_BLOCKS_CREATE);
66 	if (IS_ERR(bh))
67 		return bh;
68 	inode->i_size += inode->i_sb->s_blocksize;
69 	EXT4_I(inode)->i_disksize = inode->i_size;
70 	BUFFER_TRACE(bh, "get_write_access");
71 	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);
76 	}
77 	return bh;
78 }
79 
80 static int ext4_dx_csum_verify(struct inode *inode,
81 			       struct ext4_dir_entry *dirent);
82 
83 /*
84  * Hints to ext4_read_dirblock regarding whether we expect a directory
85  * block being read to be an index block, or a block containing
86  * directory entries (and if the latter, whether it was found via a
87  * logical block in an htree index block).  This is used to control
88  * what sort of sanity checkinig ext4_read_dirblock() will do on the
89  * directory block read from the storage device.  EITHER will means
90  * the caller doesn't know what kind of directory block will be read,
91  * so no specific verification will be done.
92  */
93 typedef enum {
94 	EITHER, INDEX, DIRENT, DIRENT_HTREE
95 } dirblock_type_t;
96 
97 #define ext4_read_dirblock(inode, block, type) \
98 	__ext4_read_dirblock((inode), (block), (type), __func__, __LINE__)
99 
__ext4_read_dirblock(struct inode * inode,ext4_lblk_t block,dirblock_type_t type,const char * func,unsigned int line)100 static struct buffer_head *__ext4_read_dirblock(struct inode *inode,
101 						ext4_lblk_t block,
102 						dirblock_type_t type,
103 						const char *func,
104 						unsigned int line)
105 {
106 	struct buffer_head *bh;
107 	struct ext4_dir_entry *dirent;
108 	int is_dx_block = 0;
109 
110 	bh = ext4_bread(NULL, inode, block, 0);
111 	if (IS_ERR(bh)) {
112 		__ext4_warning(inode->i_sb, func, line,
113 			       "inode #%lu: lblock %lu: comm %s: "
114 			       "error %ld reading directory block",
115 			       inode->i_ino, (unsigned long)block,
116 			       current->comm, PTR_ERR(bh));
117 
118 		return bh;
119 	}
120 	if (!bh && (type == INDEX || type == DIRENT_HTREE)) {
121 		ext4_error_inode(inode, func, line, block,
122 				 "Directory hole found for htree %s block",
123 				 (type == INDEX) ? "index" : "leaf");
124 		return ERR_PTR(-EFSCORRUPTED);
125 	}
126 	if (!bh)
127 		return NULL;
128 	dirent = (struct ext4_dir_entry *) bh->b_data;
129 	/* Determine whether or not we have an index block */
130 	if (is_dx(inode)) {
131 		if (block == 0)
132 			is_dx_block = 1;
133 		else if (ext4_rec_len_from_disk(dirent->rec_len,
134 						inode->i_sb->s_blocksize) ==
135 			 inode->i_sb->s_blocksize)
136 			is_dx_block = 1;
137 	}
138 	if (!is_dx_block && type == INDEX) {
139 		ext4_error_inode(inode, func, line, block,
140 		       "directory leaf block found instead of index block");
141 		brelse(bh);
142 		return ERR_PTR(-EFSCORRUPTED);
143 	}
144 	if (!ext4_has_metadata_csum(inode->i_sb) ||
145 	    buffer_verified(bh))
146 		return bh;
147 
148 	/*
149 	 * An empty leaf block can get mistaken for a index block; for
150 	 * this reason, we can only check the index checksum when the
151 	 * caller is sure it should be an index block.
152 	 */
153 	if (is_dx_block && type == INDEX) {
154 		if (ext4_dx_csum_verify(inode, dirent))
155 			set_buffer_verified(bh);
156 		else {
157 			ext4_error_inode(inode, func, line, block,
158 					 "Directory index failed checksum");
159 			brelse(bh);
160 			return ERR_PTR(-EFSBADCRC);
161 		}
162 	}
163 	if (!is_dx_block) {
164 		if (ext4_dirent_csum_verify(inode, dirent))
165 			set_buffer_verified(bh);
166 		else {
167 			ext4_error_inode(inode, func, line, block,
168 					 "Directory block failed checksum");
169 			brelse(bh);
170 			return ERR_PTR(-EFSBADCRC);
171 		}
172 	}
173 	return bh;
174 }
175 
176 #ifndef assert
177 #define assert(test) J_ASSERT(test)
178 #endif
179 
180 #ifdef DX_DEBUG
181 #define dxtrace(command) command
182 #else
183 #define dxtrace(command)
184 #endif
185 
186 struct fake_dirent
187 {
188 	__le32 inode;
189 	__le16 rec_len;
190 	u8 name_len;
191 	u8 file_type;
192 };
193 
194 struct dx_countlimit
195 {
196 	__le16 limit;
197 	__le16 count;
198 };
199 
200 struct dx_entry
201 {
202 	__le32 hash;
203 	__le32 block;
204 };
205 
206 /*
207  * dx_root_info is laid out so that if it should somehow get overlaid by a
208  * dirent the two low bits of the hash version will be zero.  Therefore, the
209  * hash version mod 4 should never be 0.  Sincerely, the paranoia department.
210  */
211 
212 struct dx_root
213 {
214 	struct fake_dirent dot;
215 	char dot_name[4];
216 	struct fake_dirent dotdot;
217 	char dotdot_name[4];
218 	struct dx_root_info
219 	{
220 		__le32 reserved_zero;
221 		u8 hash_version;
222 		u8 info_length; /* 8 */
223 		u8 indirect_levels;
224 		u8 unused_flags;
225 	}
226 	info;
227 	struct dx_entry	entries[0];
228 };
229 
230 struct dx_node
231 {
232 	struct fake_dirent fake;
233 	struct dx_entry	entries[0];
234 };
235 
236 
237 struct dx_frame
238 {
239 	struct buffer_head *bh;
240 	struct dx_entry *entries;
241 	struct dx_entry *at;
242 };
243 
244 struct dx_map_entry
245 {
246 	u32 hash;
247 	u16 offs;
248 	u16 size;
249 };
250 
251 /*
252  * This goes at the end of each htree block.
253  */
254 struct dx_tail {
255 	u32 dt_reserved;
256 	__le32 dt_checksum;	/* crc32c(uuid+inum+dirblock) */
257 };
258 
259 static inline ext4_lblk_t dx_get_block(struct dx_entry *entry);
260 static void dx_set_block(struct dx_entry *entry, ext4_lblk_t value);
261 static inline unsigned dx_get_hash(struct dx_entry *entry);
262 static void dx_set_hash(struct dx_entry *entry, unsigned value);
263 static unsigned dx_get_count(struct dx_entry *entries);
264 static unsigned dx_get_limit(struct dx_entry *entries);
265 static void dx_set_count(struct dx_entry *entries, unsigned value);
266 static void dx_set_limit(struct dx_entry *entries, unsigned value);
267 static unsigned dx_root_limit(struct inode *dir, unsigned infosize);
268 static unsigned dx_node_limit(struct inode *dir);
269 static struct dx_frame *dx_probe(struct ext4_filename *fname,
270 				 struct inode *dir,
271 				 struct dx_hash_info *hinfo,
272 				 struct dx_frame *frame);
273 static void dx_release(struct dx_frame *frames);
274 static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de,
275 		       unsigned blocksize, struct dx_hash_info *hinfo,
276 		       struct dx_map_entry map[]);
277 static void dx_sort_map(struct dx_map_entry *map, unsigned count);
278 static struct ext4_dir_entry_2 *dx_move_dirents(char *from, char *to,
279 		struct dx_map_entry *offsets, int count, unsigned blocksize);
280 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize);
281 static void dx_insert_block(struct dx_frame *frame,
282 					u32 hash, ext4_lblk_t block);
283 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
284 				 struct dx_frame *frame,
285 				 struct dx_frame *frames,
286 				 __u32 *start_hash);
287 static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
288 		struct ext4_filename *fname,
289 		struct ext4_dir_entry_2 **res_dir);
290 static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
291 			     struct inode *dir, struct inode *inode);
292 
293 /* checksumming functions */
initialize_dirent_tail(struct ext4_dir_entry_tail * t,unsigned int blocksize)294 void initialize_dirent_tail(struct ext4_dir_entry_tail *t,
295 			    unsigned int blocksize)
296 {
297 	memset(t, 0, sizeof(struct ext4_dir_entry_tail));
298 	t->det_rec_len = ext4_rec_len_to_disk(
299 			sizeof(struct ext4_dir_entry_tail), blocksize);
300 	t->det_reserved_ft = EXT4_FT_DIR_CSUM;
301 }
302 
303 /* Walk through a dirent block to find a checksum "dirent" at the tail */
get_dirent_tail(struct inode * inode,struct ext4_dir_entry * de)304 static struct ext4_dir_entry_tail *get_dirent_tail(struct inode *inode,
305 						   struct ext4_dir_entry *de)
306 {
307 	struct ext4_dir_entry_tail *t;
308 
309 #ifdef PARANOID
310 	struct ext4_dir_entry *d, *top;
311 
312 	d = de;
313 	top = (struct ext4_dir_entry *)(((void *)de) +
314 		(EXT4_BLOCK_SIZE(inode->i_sb) -
315 		sizeof(struct ext4_dir_entry_tail)));
316 	while (d < top && d->rec_len)
317 		d = (struct ext4_dir_entry *)(((void *)d) +
318 		    le16_to_cpu(d->rec_len));
319 
320 	if (d != top)
321 		return NULL;
322 
323 	t = (struct ext4_dir_entry_tail *)d;
324 #else
325 	t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb));
326 #endif
327 
328 	if (t->det_reserved_zero1 ||
329 	    le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) ||
330 	    t->det_reserved_zero2 ||
331 	    t->det_reserved_ft != EXT4_FT_DIR_CSUM)
332 		return NULL;
333 
334 	return t;
335 }
336 
ext4_dirent_csum(struct inode * inode,struct ext4_dir_entry * dirent,int size)337 static __le32 ext4_dirent_csum(struct inode *inode,
338 			       struct ext4_dir_entry *dirent, int size)
339 {
340 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
341 	struct ext4_inode_info *ei = EXT4_I(inode);
342 	__u32 csum;
343 
344 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
345 	return cpu_to_le32(csum);
346 }
347 
348 #define warn_no_space_for_csum(inode)					\
349 	__warn_no_space_for_csum((inode), __func__, __LINE__)
350 
__warn_no_space_for_csum(struct inode * inode,const char * func,unsigned int line)351 static void __warn_no_space_for_csum(struct inode *inode, const char *func,
352 				     unsigned int line)
353 {
354 	__ext4_warning_inode(inode, func, line,
355 		"No space for directory leaf checksum. Please run e2fsck -D.");
356 }
357 
ext4_dirent_csum_verify(struct inode * inode,struct ext4_dir_entry * dirent)358 int ext4_dirent_csum_verify(struct inode *inode, struct ext4_dir_entry *dirent)
359 {
360 	struct ext4_dir_entry_tail *t;
361 
362 	if (!ext4_has_metadata_csum(inode->i_sb))
363 		return 1;
364 
365 	t = get_dirent_tail(inode, dirent);
366 	if (!t) {
367 		warn_no_space_for_csum(inode);
368 		return 0;
369 	}
370 
371 	if (t->det_checksum != ext4_dirent_csum(inode, dirent,
372 						(void *)t - (void *)dirent))
373 		return 0;
374 
375 	return 1;
376 }
377 
ext4_dirent_csum_set(struct inode * inode,struct ext4_dir_entry * dirent)378 static void ext4_dirent_csum_set(struct inode *inode,
379 				 struct ext4_dir_entry *dirent)
380 {
381 	struct ext4_dir_entry_tail *t;
382 
383 	if (!ext4_has_metadata_csum(inode->i_sb))
384 		return;
385 
386 	t = get_dirent_tail(inode, dirent);
387 	if (!t) {
388 		warn_no_space_for_csum(inode);
389 		return;
390 	}
391 
392 	t->det_checksum = ext4_dirent_csum(inode, dirent,
393 					   (void *)t - (void *)dirent);
394 }
395 
ext4_handle_dirty_dirent_node(handle_t * handle,struct inode * inode,struct buffer_head * bh)396 int ext4_handle_dirty_dirent_node(handle_t *handle,
397 				  struct inode *inode,
398 				  struct buffer_head *bh)
399 {
400 	ext4_dirent_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
401 	return ext4_handle_dirty_metadata(handle, inode, bh);
402 }
403 
get_dx_countlimit(struct inode * inode,struct ext4_dir_entry * dirent,int * offset)404 static struct dx_countlimit *get_dx_countlimit(struct inode *inode,
405 					       struct ext4_dir_entry *dirent,
406 					       int *offset)
407 {
408 	struct ext4_dir_entry *dp;
409 	struct dx_root_info *root;
410 	int count_offset;
411 
412 	if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb))
413 		count_offset = 8;
414 	else if (le16_to_cpu(dirent->rec_len) == 12) {
415 		dp = (struct ext4_dir_entry *)(((void *)dirent) + 12);
416 		if (le16_to_cpu(dp->rec_len) !=
417 		    EXT4_BLOCK_SIZE(inode->i_sb) - 12)
418 			return NULL;
419 		root = (struct dx_root_info *)(((void *)dp + 12));
420 		if (root->reserved_zero ||
421 		    root->info_length != sizeof(struct dx_root_info))
422 			return NULL;
423 		count_offset = 32;
424 	} else
425 		return NULL;
426 
427 	if (offset)
428 		*offset = count_offset;
429 	return (struct dx_countlimit *)(((void *)dirent) + count_offset);
430 }
431 
ext4_dx_csum(struct inode * inode,struct ext4_dir_entry * dirent,int count_offset,int count,struct dx_tail * t)432 static __le32 ext4_dx_csum(struct inode *inode, struct ext4_dir_entry *dirent,
433 			   int count_offset, int count, struct dx_tail *t)
434 {
435 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
436 	struct ext4_inode_info *ei = EXT4_I(inode);
437 	__u32 csum;
438 	int size;
439 	__u32 dummy_csum = 0;
440 	int offset = offsetof(struct dx_tail, dt_checksum);
441 
442 	size = count_offset + (count * sizeof(struct dx_entry));
443 	csum = ext4_chksum(sbi, ei->i_csum_seed, (__u8 *)dirent, size);
444 	csum = ext4_chksum(sbi, csum, (__u8 *)t, offset);
445 	csum = ext4_chksum(sbi, csum, (__u8 *)&dummy_csum, sizeof(dummy_csum));
446 
447 	return cpu_to_le32(csum);
448 }
449 
ext4_dx_csum_verify(struct inode * inode,struct ext4_dir_entry * dirent)450 static int ext4_dx_csum_verify(struct inode *inode,
451 			       struct ext4_dir_entry *dirent)
452 {
453 	struct dx_countlimit *c;
454 	struct dx_tail *t;
455 	int count_offset, limit, count;
456 
457 	if (!ext4_has_metadata_csum(inode->i_sb))
458 		return 1;
459 
460 	c = get_dx_countlimit(inode, dirent, &count_offset);
461 	if (!c) {
462 		EXT4_ERROR_INODE(inode, "dir seems corrupt?  Run e2fsck -D.");
463 		return 0;
464 	}
465 	limit = le16_to_cpu(c->limit);
466 	count = le16_to_cpu(c->count);
467 	if (count_offset + (limit * sizeof(struct dx_entry)) >
468 	    EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
469 		warn_no_space_for_csum(inode);
470 		return 0;
471 	}
472 	t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
473 
474 	if (t->dt_checksum != ext4_dx_csum(inode, dirent, count_offset,
475 					    count, t))
476 		return 0;
477 	return 1;
478 }
479 
ext4_dx_csum_set(struct inode * inode,struct ext4_dir_entry * dirent)480 static void ext4_dx_csum_set(struct inode *inode, struct ext4_dir_entry *dirent)
481 {
482 	struct dx_countlimit *c;
483 	struct dx_tail *t;
484 	int count_offset, limit, count;
485 
486 	if (!ext4_has_metadata_csum(inode->i_sb))
487 		return;
488 
489 	c = get_dx_countlimit(inode, dirent, &count_offset);
490 	if (!c) {
491 		EXT4_ERROR_INODE(inode, "dir seems corrupt?  Run e2fsck -D.");
492 		return;
493 	}
494 	limit = le16_to_cpu(c->limit);
495 	count = le16_to_cpu(c->count);
496 	if (count_offset + (limit * sizeof(struct dx_entry)) >
497 	    EXT4_BLOCK_SIZE(inode->i_sb) - sizeof(struct dx_tail)) {
498 		warn_no_space_for_csum(inode);
499 		return;
500 	}
501 	t = (struct dx_tail *)(((struct dx_entry *)c) + limit);
502 
503 	t->dt_checksum = ext4_dx_csum(inode, dirent, count_offset, count, t);
504 }
505 
ext4_handle_dirty_dx_node(handle_t * handle,struct inode * inode,struct buffer_head * bh)506 static inline int ext4_handle_dirty_dx_node(handle_t *handle,
507 					    struct inode *inode,
508 					    struct buffer_head *bh)
509 {
510 	ext4_dx_csum_set(inode, (struct ext4_dir_entry *)bh->b_data);
511 	return ext4_handle_dirty_metadata(handle, inode, bh);
512 }
513 
514 /*
515  * p is at least 6 bytes before the end of page
516  */
517 static inline struct ext4_dir_entry_2 *
ext4_next_entry(struct ext4_dir_entry_2 * p,unsigned long blocksize)518 ext4_next_entry(struct ext4_dir_entry_2 *p, unsigned long blocksize)
519 {
520 	return (struct ext4_dir_entry_2 *)((char *)p +
521 		ext4_rec_len_from_disk(p->rec_len, blocksize));
522 }
523 
524 /*
525  * Future: use high four bits of block for coalesce-on-delete flags
526  * Mask them off for now.
527  */
528 
dx_get_block(struct dx_entry * entry)529 static inline ext4_lblk_t dx_get_block(struct dx_entry *entry)
530 {
531 	return le32_to_cpu(entry->block) & 0x0fffffff;
532 }
533 
dx_set_block(struct dx_entry * entry,ext4_lblk_t value)534 static inline void dx_set_block(struct dx_entry *entry, ext4_lblk_t value)
535 {
536 	entry->block = cpu_to_le32(value);
537 }
538 
dx_get_hash(struct dx_entry * entry)539 static inline unsigned dx_get_hash(struct dx_entry *entry)
540 {
541 	return le32_to_cpu(entry->hash);
542 }
543 
dx_set_hash(struct dx_entry * entry,unsigned value)544 static inline void dx_set_hash(struct dx_entry *entry, unsigned value)
545 {
546 	entry->hash = cpu_to_le32(value);
547 }
548 
dx_get_count(struct dx_entry * entries)549 static inline unsigned dx_get_count(struct dx_entry *entries)
550 {
551 	return le16_to_cpu(((struct dx_countlimit *) entries)->count);
552 }
553 
dx_get_limit(struct dx_entry * entries)554 static inline unsigned dx_get_limit(struct dx_entry *entries)
555 {
556 	return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
557 }
558 
dx_set_count(struct dx_entry * entries,unsigned value)559 static inline void dx_set_count(struct dx_entry *entries, unsigned value)
560 {
561 	((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
562 }
563 
dx_set_limit(struct dx_entry * entries,unsigned value)564 static inline void dx_set_limit(struct dx_entry *entries, unsigned value)
565 {
566 	((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
567 }
568 
dx_root_limit(struct inode * dir,unsigned infosize)569 static inline unsigned dx_root_limit(struct inode *dir, unsigned infosize)
570 {
571 	unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(1) -
572 		EXT4_DIR_REC_LEN(2) - infosize;
573 
574 	if (ext4_has_metadata_csum(dir->i_sb))
575 		entry_space -= sizeof(struct dx_tail);
576 	return entry_space / sizeof(struct dx_entry);
577 }
578 
dx_node_limit(struct inode * dir)579 static inline unsigned dx_node_limit(struct inode *dir)
580 {
581 	unsigned entry_space = dir->i_sb->s_blocksize - EXT4_DIR_REC_LEN(0);
582 
583 	if (ext4_has_metadata_csum(dir->i_sb))
584 		entry_space -= sizeof(struct dx_tail);
585 	return entry_space / sizeof(struct dx_entry);
586 }
587 
588 /*
589  * Debug
590  */
591 #ifdef DX_DEBUG
dx_show_index(char * label,struct dx_entry * entries)592 static void dx_show_index(char * label, struct dx_entry *entries)
593 {
594 	int i, n = dx_get_count (entries);
595 	printk(KERN_DEBUG "%s index", label);
596 	for (i = 0; i < n; i++) {
597 		printk(KERN_CONT " %x->%lu",
598 		       i ? dx_get_hash(entries + i) : 0,
599 		       (unsigned long)dx_get_block(entries + i));
600 	}
601 	printk(KERN_CONT "\n");
602 }
603 
604 struct stats
605 {
606 	unsigned names;
607 	unsigned space;
608 	unsigned bcount;
609 };
610 
dx_show_leaf(struct inode * dir,struct dx_hash_info * hinfo,struct ext4_dir_entry_2 * de,int size,int show_names)611 static struct stats dx_show_leaf(struct inode *dir,
612 				struct dx_hash_info *hinfo,
613 				struct ext4_dir_entry_2 *de,
614 				int size, int show_names)
615 {
616 	unsigned names = 0, space = 0;
617 	char *base = (char *) de;
618 	struct dx_hash_info h = *hinfo;
619 
620 	printk("names: ");
621 	while ((char *) de < base + size)
622 	{
623 		if (de->inode)
624 		{
625 			if (show_names)
626 			{
627 #ifdef CONFIG_EXT4_FS_ENCRYPTION
628 				int len;
629 				char *name;
630 				struct fscrypt_str fname_crypto_str =
631 					FSTR_INIT(NULL, 0);
632 				int res = 0;
633 
634 				name  = de->name;
635 				len = de->name_len;
636 				if (ext4_encrypted_inode(dir))
637 					res = fscrypt_get_encryption_info(dir);
638 				if (res) {
639 					printk(KERN_WARNING "Error setting up"
640 					       " fname crypto: %d\n", res);
641 				}
642 				if (!fscrypt_has_encryption_key(dir)) {
643 					/* Directory is not encrypted */
644 					ext4fs_dirhash(de->name,
645 						de->name_len, &h);
646 					printk("%*.s:(U)%x.%u ", len,
647 					       name, h.hash,
648 					       (unsigned) ((char *) de
649 							   - base));
650 				} else {
651 					struct fscrypt_str de_name =
652 						FSTR_INIT(name, len);
653 
654 					/* Directory is encrypted */
655 					res = fscrypt_fname_alloc_buffer(
656 						dir, len,
657 						&fname_crypto_str);
658 					if (res)
659 						printk(KERN_WARNING "Error "
660 							"allocating crypto "
661 							"buffer--skipping "
662 							"crypto\n");
663 					res = fscrypt_fname_disk_to_usr(dir,
664 						0, 0, &de_name,
665 						&fname_crypto_str);
666 					if (res) {
667 						printk(KERN_WARNING "Error "
668 							"converting filename "
669 							"from disk to usr"
670 							"\n");
671 						name = "??";
672 						len = 2;
673 					} else {
674 						name = fname_crypto_str.name;
675 						len = fname_crypto_str.len;
676 					}
677 					ext4fs_dirhash(de->name, de->name_len,
678 						       &h);
679 					printk("%*.s:(E)%x.%u ", len, name,
680 					       h.hash, (unsigned) ((char *) de
681 								   - base));
682 					fscrypt_fname_free_buffer(
683 							&fname_crypto_str);
684 				}
685 #else
686 				int len = de->name_len;
687 				char *name = de->name;
688 				ext4fs_dirhash(de->name, de->name_len, &h);
689 				printk("%*.s:%x.%u ", len, name, h.hash,
690 				       (unsigned) ((char *) de - base));
691 #endif
692 			}
693 			space += EXT4_DIR_REC_LEN(de->name_len);
694 			names++;
695 		}
696 		de = ext4_next_entry(de, size);
697 	}
698 	printk(KERN_CONT "(%i)\n", names);
699 	return (struct stats) { names, space, 1 };
700 }
701 
dx_show_entries(struct dx_hash_info * hinfo,struct inode * dir,struct dx_entry * entries,int levels)702 struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
703 			     struct dx_entry *entries, int levels)
704 {
705 	unsigned blocksize = dir->i_sb->s_blocksize;
706 	unsigned count = dx_get_count(entries), names = 0, space = 0, i;
707 	unsigned bcount = 0;
708 	struct buffer_head *bh;
709 	printk("%i indexed blocks...\n", count);
710 	for (i = 0; i < count; i++, entries++)
711 	{
712 		ext4_lblk_t block = dx_get_block(entries);
713 		ext4_lblk_t hash  = i ? dx_get_hash(entries): 0;
714 		u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
715 		struct stats stats;
716 		printk("%s%3u:%03u hash %8x/%8x ",levels?"":"   ", i, block, hash, range);
717 		bh = ext4_bread(NULL,dir, block, 0);
718 		if (!bh || IS_ERR(bh))
719 			continue;
720 		stats = levels?
721 		   dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
722 		   dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *)
723 			bh->b_data, blocksize, 0);
724 		names += stats.names;
725 		space += stats.space;
726 		bcount += stats.bcount;
727 		brelse(bh);
728 	}
729 	if (bcount)
730 		printk(KERN_DEBUG "%snames %u, fullness %u (%u%%)\n",
731 		       levels ? "" : "   ", names, space/bcount,
732 		       (space/bcount)*100/blocksize);
733 	return (struct stats) { names, space, bcount};
734 }
735 #endif /* DX_DEBUG */
736 
737 /*
738  * Probe for a directory leaf block to search.
739  *
740  * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
741  * error in the directory index, and the caller should fall back to
742  * searching the directory normally.  The callers of dx_probe **MUST**
743  * check for this error code, and make sure it never gets reflected
744  * back to userspace.
745  */
746 static struct dx_frame *
dx_probe(struct ext4_filename * fname,struct inode * dir,struct dx_hash_info * hinfo,struct dx_frame * frame_in)747 dx_probe(struct ext4_filename *fname, struct inode *dir,
748 	 struct dx_hash_info *hinfo, struct dx_frame *frame_in)
749 {
750 	unsigned count, indirect;
751 	struct dx_entry *at, *entries, *p, *q, *m;
752 	struct dx_root *root;
753 	struct dx_frame *frame = frame_in;
754 	struct dx_frame *ret_err = ERR_PTR(ERR_BAD_DX_DIR);
755 	u32 hash;
756 
757 	memset(frame_in, 0, EXT4_HTREE_LEVEL * sizeof(frame_in[0]));
758 	frame->bh = ext4_read_dirblock(dir, 0, INDEX);
759 	if (IS_ERR(frame->bh))
760 		return (struct dx_frame *) frame->bh;
761 
762 	root = (struct dx_root *) frame->bh->b_data;
763 	if (root->info.hash_version != DX_HASH_TEA &&
764 	    root->info.hash_version != DX_HASH_HALF_MD4 &&
765 	    root->info.hash_version != DX_HASH_LEGACY) {
766 		ext4_warning_inode(dir, "Unrecognised inode hash code %u",
767 				   root->info.hash_version);
768 		goto fail;
769 	}
770 	if (fname)
771 		hinfo = &fname->hinfo;
772 	hinfo->hash_version = root->info.hash_version;
773 	if (hinfo->hash_version <= DX_HASH_TEA)
774 		hinfo->hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
775 	hinfo->seed = EXT4_SB(dir->i_sb)->s_hash_seed;
776 	if (fname && fname_name(fname))
777 		ext4fs_dirhash(fname_name(fname), fname_len(fname), hinfo);
778 	hash = hinfo->hash;
779 
780 	if (root->info.unused_flags & 1) {
781 		ext4_warning_inode(dir, "Unimplemented hash flags: %#06x",
782 				   root->info.unused_flags);
783 		goto fail;
784 	}
785 
786 	indirect = root->info.indirect_levels;
787 	if (indirect >= ext4_dir_htree_level(dir->i_sb)) {
788 		ext4_warning(dir->i_sb,
789 			     "Directory (ino: %lu) htree depth %#06x exceed"
790 			     "supported value", dir->i_ino,
791 			     ext4_dir_htree_level(dir->i_sb));
792 		if (ext4_dir_htree_level(dir->i_sb) < EXT4_HTREE_LEVEL) {
793 			ext4_warning(dir->i_sb, "Enable large directory "
794 						"feature to access it");
795 		}
796 		goto fail;
797 	}
798 
799 	entries = (struct dx_entry *)(((char *)&root->info) +
800 				      root->info.info_length);
801 
802 	if (dx_get_limit(entries) != dx_root_limit(dir,
803 						   root->info.info_length)) {
804 		ext4_warning_inode(dir, "dx entry: limit %u != root limit %u",
805 				   dx_get_limit(entries),
806 				   dx_root_limit(dir, root->info.info_length));
807 		goto fail;
808 	}
809 
810 	dxtrace(printk("Look up %x", hash));
811 	while (1) {
812 		count = dx_get_count(entries);
813 		if (!count || count > dx_get_limit(entries)) {
814 			ext4_warning_inode(dir,
815 					   "dx entry: count %u beyond limit %u",
816 					   count, dx_get_limit(entries));
817 			goto fail;
818 		}
819 
820 		p = entries + 1;
821 		q = entries + count - 1;
822 		while (p <= q) {
823 			m = p + (q - p) / 2;
824 			dxtrace(printk(KERN_CONT "."));
825 			if (dx_get_hash(m) > hash)
826 				q = m - 1;
827 			else
828 				p = m + 1;
829 		}
830 
831 		if (0) { // linear search cross check
832 			unsigned n = count - 1;
833 			at = entries;
834 			while (n--)
835 			{
836 				dxtrace(printk(KERN_CONT ","));
837 				if (dx_get_hash(++at) > hash)
838 				{
839 					at--;
840 					break;
841 				}
842 			}
843 			assert (at == p - 1);
844 		}
845 
846 		at = p - 1;
847 		dxtrace(printk(KERN_CONT " %x->%u\n",
848 			       at == entries ? 0 : dx_get_hash(at),
849 			       dx_get_block(at)));
850 		frame->entries = entries;
851 		frame->at = at;
852 		if (!indirect--)
853 			return frame;
854 		frame++;
855 		frame->bh = ext4_read_dirblock(dir, dx_get_block(at), INDEX);
856 		if (IS_ERR(frame->bh)) {
857 			ret_err = (struct dx_frame *) frame->bh;
858 			frame->bh = NULL;
859 			goto fail;
860 		}
861 		entries = ((struct dx_node *) frame->bh->b_data)->entries;
862 
863 		if (dx_get_limit(entries) != dx_node_limit(dir)) {
864 			ext4_warning_inode(dir,
865 				"dx entry: limit %u != node limit %u",
866 				dx_get_limit(entries), dx_node_limit(dir));
867 			goto fail;
868 		}
869 	}
870 fail:
871 	while (frame >= frame_in) {
872 		brelse(frame->bh);
873 		frame--;
874 	}
875 
876 	if (ret_err == ERR_PTR(ERR_BAD_DX_DIR))
877 		ext4_warning_inode(dir,
878 			"Corrupt directory, running e2fsck is recommended");
879 	return ret_err;
880 }
881 
dx_release(struct dx_frame * frames)882 static void dx_release(struct dx_frame *frames)
883 {
884 	struct dx_root_info *info;
885 	int i;
886 	unsigned int indirect_levels;
887 
888 	if (frames[0].bh == NULL)
889 		return;
890 
891 	info = &((struct dx_root *)frames[0].bh->b_data)->info;
892 	/* save local copy, "info" may be freed after brelse() */
893 	indirect_levels = info->indirect_levels;
894 	for (i = 0; i <= indirect_levels; i++) {
895 		if (frames[i].bh == NULL)
896 			break;
897 		brelse(frames[i].bh);
898 		frames[i].bh = NULL;
899 	}
900 }
901 
902 /*
903  * This function increments the frame pointer to search the next leaf
904  * block, and reads in the necessary intervening nodes if the search
905  * should be necessary.  Whether or not the search is necessary is
906  * controlled by the hash parameter.  If the hash value is even, then
907  * the search is only continued if the next block starts with that
908  * hash value.  This is used if we are searching for a specific file.
909  *
910  * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
911  *
912  * This function returns 1 if the caller should continue to search,
913  * or 0 if it should not.  If there is an error reading one of the
914  * index blocks, it will a negative error code.
915  *
916  * If start_hash is non-null, it will be filled in with the starting
917  * hash of the next page.
918  */
ext4_htree_next_block(struct inode * dir,__u32 hash,struct dx_frame * frame,struct dx_frame * frames,__u32 * start_hash)919 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
920 				 struct dx_frame *frame,
921 				 struct dx_frame *frames,
922 				 __u32 *start_hash)
923 {
924 	struct dx_frame *p;
925 	struct buffer_head *bh;
926 	int num_frames = 0;
927 	__u32 bhash;
928 
929 	p = frame;
930 	/*
931 	 * Find the next leaf page by incrementing the frame pointer.
932 	 * If we run out of entries in the interior node, loop around and
933 	 * increment pointer in the parent node.  When we break out of
934 	 * this loop, num_frames indicates the number of interior
935 	 * nodes need to be read.
936 	 */
937 	while (1) {
938 		if (++(p->at) < p->entries + dx_get_count(p->entries))
939 			break;
940 		if (p == frames)
941 			return 0;
942 		num_frames++;
943 		p--;
944 	}
945 
946 	/*
947 	 * If the hash is 1, then continue only if the next page has a
948 	 * continuation hash of any value.  This is used for readdir
949 	 * handling.  Otherwise, check to see if the hash matches the
950 	 * desired contiuation hash.  If it doesn't, return since
951 	 * there's no point to read in the successive index pages.
952 	 */
953 	bhash = dx_get_hash(p->at);
954 	if (start_hash)
955 		*start_hash = bhash;
956 	if ((hash & 1) == 0) {
957 		if ((bhash & ~1) != hash)
958 			return 0;
959 	}
960 	/*
961 	 * If the hash is HASH_NB_ALWAYS, we always go to the next
962 	 * block so no check is necessary
963 	 */
964 	while (num_frames--) {
965 		bh = ext4_read_dirblock(dir, dx_get_block(p->at), INDEX);
966 		if (IS_ERR(bh))
967 			return PTR_ERR(bh);
968 		p++;
969 		brelse(p->bh);
970 		p->bh = bh;
971 		p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
972 	}
973 	return 1;
974 }
975 
976 
977 /*
978  * This function fills a red-black tree with information from a
979  * directory block.  It returns the number directory entries loaded
980  * into the tree.  If there is an error it is returned in err.
981  */
htree_dirblock_to_tree(struct file * dir_file,struct inode * dir,ext4_lblk_t block,struct dx_hash_info * hinfo,__u32 start_hash,__u32 start_minor_hash)982 static int htree_dirblock_to_tree(struct file *dir_file,
983 				  struct inode *dir, ext4_lblk_t block,
984 				  struct dx_hash_info *hinfo,
985 				  __u32 start_hash, __u32 start_minor_hash)
986 {
987 	struct buffer_head *bh;
988 	struct ext4_dir_entry_2 *de, *top;
989 	int err = 0, count = 0;
990 	struct fscrypt_str fname_crypto_str = FSTR_INIT(NULL, 0), tmp_str;
991 
992 	dxtrace(printk(KERN_INFO "In htree dirblock_to_tree: block %lu\n",
993 							(unsigned long)block));
994 	bh = ext4_read_dirblock(dir, block, DIRENT_HTREE);
995 	if (IS_ERR(bh))
996 		return PTR_ERR(bh);
997 
998 	de = (struct ext4_dir_entry_2 *) bh->b_data;
999 	top = (struct ext4_dir_entry_2 *) ((char *) de +
1000 					   dir->i_sb->s_blocksize -
1001 					   EXT4_DIR_REC_LEN(0));
1002 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1003 	/* Check if the directory is encrypted */
1004 	if (ext4_encrypted_inode(dir)) {
1005 		err = fscrypt_get_encryption_info(dir);
1006 		if (err < 0) {
1007 			brelse(bh);
1008 			return err;
1009 		}
1010 		err = fscrypt_fname_alloc_buffer(dir, EXT4_NAME_LEN,
1011 						     &fname_crypto_str);
1012 		if (err < 0) {
1013 			brelse(bh);
1014 			return err;
1015 		}
1016 	}
1017 #endif
1018 	for (; de < top; de = ext4_next_entry(de, dir->i_sb->s_blocksize)) {
1019 		if (ext4_check_dir_entry(dir, NULL, de, bh,
1020 				bh->b_data, bh->b_size,
1021 				(block<<EXT4_BLOCK_SIZE_BITS(dir->i_sb))
1022 					 + ((char *)de - bh->b_data))) {
1023 			/* silently ignore the rest of the block */
1024 			break;
1025 		}
1026 		ext4fs_dirhash(de->name, de->name_len, hinfo);
1027 		if ((hinfo->hash < start_hash) ||
1028 		    ((hinfo->hash == start_hash) &&
1029 		     (hinfo->minor_hash < start_minor_hash)))
1030 			continue;
1031 		if (de->inode == 0)
1032 			continue;
1033 		if (!ext4_encrypted_inode(dir)) {
1034 			tmp_str.name = de->name;
1035 			tmp_str.len = de->name_len;
1036 			err = ext4_htree_store_dirent(dir_file,
1037 				   hinfo->hash, hinfo->minor_hash, de,
1038 				   &tmp_str);
1039 		} else {
1040 			int save_len = fname_crypto_str.len;
1041 			struct fscrypt_str de_name = FSTR_INIT(de->name,
1042 								de->name_len);
1043 
1044 			/* Directory is encrypted */
1045 			err = fscrypt_fname_disk_to_usr(dir, hinfo->hash,
1046 					hinfo->minor_hash, &de_name,
1047 					&fname_crypto_str);
1048 			if (err) {
1049 				count = err;
1050 				goto errout;
1051 			}
1052 			err = ext4_htree_store_dirent(dir_file,
1053 				   hinfo->hash, hinfo->minor_hash, de,
1054 					&fname_crypto_str);
1055 			fname_crypto_str.len = save_len;
1056 		}
1057 		if (err != 0) {
1058 			count = err;
1059 			goto errout;
1060 		}
1061 		count++;
1062 	}
1063 errout:
1064 	brelse(bh);
1065 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1066 	fscrypt_fname_free_buffer(&fname_crypto_str);
1067 #endif
1068 	return count;
1069 }
1070 
1071 
1072 /*
1073  * This function fills a red-black tree with information from a
1074  * directory.  We start scanning the directory in hash order, starting
1075  * at start_hash and start_minor_hash.
1076  *
1077  * This function returns the number of entries inserted into the tree,
1078  * or a negative error code.
1079  */
ext4_htree_fill_tree(struct file * dir_file,__u32 start_hash,__u32 start_minor_hash,__u32 * next_hash)1080 int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
1081 			 __u32 start_minor_hash, __u32 *next_hash)
1082 {
1083 	struct dx_hash_info hinfo;
1084 	struct ext4_dir_entry_2 *de;
1085 	struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
1086 	struct inode *dir;
1087 	ext4_lblk_t block;
1088 	int count = 0;
1089 	int ret, err;
1090 	__u32 hashval;
1091 	struct fscrypt_str tmp_str;
1092 
1093 	dxtrace(printk(KERN_DEBUG "In htree_fill_tree, start hash: %x:%x\n",
1094 		       start_hash, start_minor_hash));
1095 	dir = file_inode(dir_file);
1096 	if (!(ext4_test_inode_flag(dir, EXT4_INODE_INDEX))) {
1097 		hinfo.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
1098 		if (hinfo.hash_version <= DX_HASH_TEA)
1099 			hinfo.hash_version +=
1100 				EXT4_SB(dir->i_sb)->s_hash_unsigned;
1101 		hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
1102 		if (ext4_has_inline_data(dir)) {
1103 			int has_inline_data = 1;
1104 			count = htree_inlinedir_to_tree(dir_file, dir, 0,
1105 							&hinfo, start_hash,
1106 							start_minor_hash,
1107 							&has_inline_data);
1108 			if (has_inline_data) {
1109 				*next_hash = ~0;
1110 				return count;
1111 			}
1112 		}
1113 		count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
1114 					       start_hash, start_minor_hash);
1115 		*next_hash = ~0;
1116 		return count;
1117 	}
1118 	hinfo.hash = start_hash;
1119 	hinfo.minor_hash = 0;
1120 	frame = dx_probe(NULL, dir, &hinfo, frames);
1121 	if (IS_ERR(frame))
1122 		return PTR_ERR(frame);
1123 
1124 	/* Add '.' and '..' from the htree header */
1125 	if (!start_hash && !start_minor_hash) {
1126 		de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
1127 		tmp_str.name = de->name;
1128 		tmp_str.len = de->name_len;
1129 		err = ext4_htree_store_dirent(dir_file, 0, 0,
1130 					      de, &tmp_str);
1131 		if (err != 0)
1132 			goto errout;
1133 		count++;
1134 	}
1135 	if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
1136 		de = (struct ext4_dir_entry_2 *) frames[0].bh->b_data;
1137 		de = ext4_next_entry(de, dir->i_sb->s_blocksize);
1138 		tmp_str.name = de->name;
1139 		tmp_str.len = de->name_len;
1140 		err = ext4_htree_store_dirent(dir_file, 2, 0,
1141 					      de, &tmp_str);
1142 		if (err != 0)
1143 			goto errout;
1144 		count++;
1145 	}
1146 
1147 	while (1) {
1148 		if (fatal_signal_pending(current)) {
1149 			err = -ERESTARTSYS;
1150 			goto errout;
1151 		}
1152 		cond_resched();
1153 		block = dx_get_block(frame->at);
1154 		ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
1155 					     start_hash, start_minor_hash);
1156 		if (ret < 0) {
1157 			err = ret;
1158 			goto errout;
1159 		}
1160 		count += ret;
1161 		hashval = ~0;
1162 		ret = ext4_htree_next_block(dir, HASH_NB_ALWAYS,
1163 					    frame, frames, &hashval);
1164 		*next_hash = hashval;
1165 		if (ret < 0) {
1166 			err = ret;
1167 			goto errout;
1168 		}
1169 		/*
1170 		 * Stop if:  (a) there are no more entries, or
1171 		 * (b) we have inserted at least one entry and the
1172 		 * next hash value is not a continuation
1173 		 */
1174 		if ((ret == 0) ||
1175 		    (count && ((hashval & 1) == 0)))
1176 			break;
1177 	}
1178 	dx_release(frames);
1179 	dxtrace(printk(KERN_DEBUG "Fill tree: returned %d entries, "
1180 		       "next hash: %x\n", count, *next_hash));
1181 	return count;
1182 errout:
1183 	dx_release(frames);
1184 	return (err);
1185 }
1186 
search_dirblock(struct buffer_head * bh,struct inode * dir,struct ext4_filename * fname,unsigned int offset,struct ext4_dir_entry_2 ** res_dir)1187 static inline int search_dirblock(struct buffer_head *bh,
1188 				  struct inode *dir,
1189 				  struct ext4_filename *fname,
1190 				  unsigned int offset,
1191 				  struct ext4_dir_entry_2 **res_dir)
1192 {
1193 	return ext4_search_dir(bh, bh->b_data, dir->i_sb->s_blocksize, dir,
1194 			       fname, offset, res_dir);
1195 }
1196 
1197 /*
1198  * Directory block splitting, compacting
1199  */
1200 
1201 /*
1202  * Create map of hash values, offsets, and sizes, stored at end of block.
1203  * Returns number of entries mapped.
1204  */
dx_make_map(struct inode * dir,struct ext4_dir_entry_2 * de,unsigned blocksize,struct dx_hash_info * hinfo,struct dx_map_entry * map_tail)1205 static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de,
1206 		       unsigned blocksize, struct dx_hash_info *hinfo,
1207 		       struct dx_map_entry *map_tail)
1208 {
1209 	int count = 0;
1210 	char *base = (char *) de;
1211 	struct dx_hash_info h = *hinfo;
1212 
1213 	while ((char *) de < base + blocksize) {
1214 		if (de->name_len && de->inode) {
1215 			ext4fs_dirhash(de->name, de->name_len, &h);
1216 			map_tail--;
1217 			map_tail->hash = h.hash;
1218 			map_tail->offs = ((char *) de - base)>>2;
1219 			map_tail->size = le16_to_cpu(de->rec_len);
1220 			count++;
1221 			cond_resched();
1222 		}
1223 		/* XXX: do we need to check rec_len == 0 case? -Chris */
1224 		de = ext4_next_entry(de, blocksize);
1225 	}
1226 	return count;
1227 }
1228 
1229 /* Sort map by hash value */
dx_sort_map(struct dx_map_entry * map,unsigned count)1230 static void dx_sort_map (struct dx_map_entry *map, unsigned count)
1231 {
1232 	struct dx_map_entry *p, *q, *top = map + count - 1;
1233 	int more;
1234 	/* Combsort until bubble sort doesn't suck */
1235 	while (count > 2) {
1236 		count = count*10/13;
1237 		if (count - 9 < 2) /* 9, 10 -> 11 */
1238 			count = 11;
1239 		for (p = top, q = p - count; q >= map; p--, q--)
1240 			if (p->hash < q->hash)
1241 				swap(*p, *q);
1242 	}
1243 	/* Garden variety bubble sort */
1244 	do {
1245 		more = 0;
1246 		q = top;
1247 		while (q-- > map) {
1248 			if (q[1].hash >= q[0].hash)
1249 				continue;
1250 			swap(*(q+1), *q);
1251 			more = 1;
1252 		}
1253 	} while(more);
1254 }
1255 
dx_insert_block(struct dx_frame * frame,u32 hash,ext4_lblk_t block)1256 static void dx_insert_block(struct dx_frame *frame, u32 hash, ext4_lblk_t block)
1257 {
1258 	struct dx_entry *entries = frame->entries;
1259 	struct dx_entry *old = frame->at, *new = old + 1;
1260 	int count = dx_get_count(entries);
1261 
1262 	assert(count < dx_get_limit(entries));
1263 	assert(old < entries + count);
1264 	memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
1265 	dx_set_hash(new, hash);
1266 	dx_set_block(new, block);
1267 	dx_set_count(entries, count + 1);
1268 }
1269 
1270 /*
1271  * Test whether a directory entry matches the filename being searched for.
1272  *
1273  * Return: %true if the directory entry matches, otherwise %false.
1274  */
ext4_match(const struct ext4_filename * fname,const struct ext4_dir_entry_2 * de)1275 static inline bool ext4_match(const struct ext4_filename *fname,
1276 			      const struct ext4_dir_entry_2 *de)
1277 {
1278 	struct fscrypt_name f;
1279 
1280 	if (!de->inode)
1281 		return false;
1282 
1283 	f.usr_fname = fname->usr_fname;
1284 	f.disk_name = fname->disk_name;
1285 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1286 	f.crypto_buf = fname->crypto_buf;
1287 #endif
1288 	return fscrypt_match_name(&f, de->name, de->name_len);
1289 }
1290 
1291 /*
1292  * Returns 0 if not found, -1 on failure, and 1 on success
1293  */
ext4_search_dir(struct buffer_head * bh,char * search_buf,int buf_size,struct inode * dir,struct ext4_filename * fname,unsigned int offset,struct ext4_dir_entry_2 ** res_dir)1294 int ext4_search_dir(struct buffer_head *bh, char *search_buf, int buf_size,
1295 		    struct inode *dir, struct ext4_filename *fname,
1296 		    unsigned int offset, struct ext4_dir_entry_2 **res_dir)
1297 {
1298 	struct ext4_dir_entry_2 * de;
1299 	char * dlimit;
1300 	int de_len;
1301 
1302 	de = (struct ext4_dir_entry_2 *)search_buf;
1303 	dlimit = search_buf + buf_size;
1304 	while ((char *) de < dlimit) {
1305 		/* this code is executed quadratically often */
1306 		/* do minimal checking `by hand' */
1307 		if ((char *) de + de->name_len <= dlimit &&
1308 		    ext4_match(fname, de)) {
1309 			/* found a match - just to be sure, do
1310 			 * a full check */
1311 			if (ext4_check_dir_entry(dir, NULL, de, bh, bh->b_data,
1312 						 bh->b_size, offset))
1313 				return -1;
1314 			*res_dir = de;
1315 			return 1;
1316 		}
1317 		/* prevent looping on a bad block */
1318 		de_len = ext4_rec_len_from_disk(de->rec_len,
1319 						dir->i_sb->s_blocksize);
1320 		if (de_len <= 0)
1321 			return -1;
1322 		offset += de_len;
1323 		de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
1324 	}
1325 	return 0;
1326 }
1327 
is_dx_internal_node(struct inode * dir,ext4_lblk_t block,struct ext4_dir_entry * de)1328 static int is_dx_internal_node(struct inode *dir, ext4_lblk_t block,
1329 			       struct ext4_dir_entry *de)
1330 {
1331 	struct super_block *sb = dir->i_sb;
1332 
1333 	if (!is_dx(dir))
1334 		return 0;
1335 	if (block == 0)
1336 		return 1;
1337 	if (de->inode == 0 &&
1338 	    ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize) ==
1339 			sb->s_blocksize)
1340 		return 1;
1341 	return 0;
1342 }
1343 
1344 /*
1345  *	ext4_find_entry()
1346  *
1347  * finds an entry in the specified directory with the wanted name. It
1348  * returns the cache buffer in which the entry was found, and the entry
1349  * itself (as a parameter - res_dir). It does NOT read the inode of the
1350  * entry - you'll have to do that yourself if you want to.
1351  *
1352  * The returned buffer_head has ->b_count elevated.  The caller is expected
1353  * to brelse() it when appropriate.
1354  */
ext4_find_entry(struct inode * dir,const struct qstr * d_name,struct ext4_dir_entry_2 ** res_dir,int * inlined)1355 static struct buffer_head * ext4_find_entry (struct inode *dir,
1356 					const struct qstr *d_name,
1357 					struct ext4_dir_entry_2 **res_dir,
1358 					int *inlined)
1359 {
1360 	struct super_block *sb;
1361 	struct buffer_head *bh_use[NAMEI_RA_SIZE];
1362 	struct buffer_head *bh, *ret = NULL;
1363 	ext4_lblk_t start, block;
1364 	const u8 *name = d_name->name;
1365 	size_t ra_max = 0;	/* Number of bh's in the readahead
1366 				   buffer, bh_use[] */
1367 	size_t ra_ptr = 0;	/* Current index into readahead
1368 				   buffer */
1369 	ext4_lblk_t  nblocks;
1370 	int i, namelen, retval;
1371 	struct ext4_filename fname;
1372 
1373 	*res_dir = NULL;
1374 	sb = dir->i_sb;
1375 	namelen = d_name->len;
1376 	if (namelen > EXT4_NAME_LEN)
1377 		return NULL;
1378 
1379 	retval = ext4_fname_setup_filename(dir, d_name, 1, &fname);
1380 	if (retval == -ENOENT)
1381 		return NULL;
1382 	if (retval)
1383 		return ERR_PTR(retval);
1384 
1385 	if (ext4_has_inline_data(dir)) {
1386 		int has_inline_data = 1;
1387 		ret = ext4_find_inline_entry(dir, &fname, res_dir,
1388 					     &has_inline_data);
1389 		if (has_inline_data) {
1390 			if (inlined)
1391 				*inlined = 1;
1392 			goto cleanup_and_exit;
1393 		}
1394 	}
1395 
1396 	if ((namelen <= 2) && (name[0] == '.') &&
1397 	    (name[1] == '.' || name[1] == '\0')) {
1398 		/*
1399 		 * "." or ".." will only be in the first block
1400 		 * NFS may look up ".."; "." should be handled by the VFS
1401 		 */
1402 		block = start = 0;
1403 		nblocks = 1;
1404 		goto restart;
1405 	}
1406 	if (is_dx(dir)) {
1407 		ret = ext4_dx_find_entry(dir, &fname, res_dir);
1408 		/*
1409 		 * On success, or if the error was file not found,
1410 		 * return.  Otherwise, fall back to doing a search the
1411 		 * old fashioned way.
1412 		 */
1413 		if (!IS_ERR(ret) || PTR_ERR(ret) != ERR_BAD_DX_DIR)
1414 			goto cleanup_and_exit;
1415 		dxtrace(printk(KERN_DEBUG "ext4_find_entry: dx failed, "
1416 			       "falling back\n"));
1417 		ret = NULL;
1418 	}
1419 	nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1420 	if (!nblocks) {
1421 		ret = NULL;
1422 		goto cleanup_and_exit;
1423 	}
1424 	start = EXT4_I(dir)->i_dir_start_lookup;
1425 	if (start >= nblocks)
1426 		start = 0;
1427 	block = start;
1428 restart:
1429 	do {
1430 		/*
1431 		 * We deal with the read-ahead logic here.
1432 		 */
1433 		cond_resched();
1434 		if (ra_ptr >= ra_max) {
1435 			/* Refill the readahead buffer */
1436 			ra_ptr = 0;
1437 			if (block < start)
1438 				ra_max = start - block;
1439 			else
1440 				ra_max = nblocks - block;
1441 			ra_max = min(ra_max, ARRAY_SIZE(bh_use));
1442 			retval = ext4_bread_batch(dir, block, ra_max,
1443 						  false /* wait */, bh_use);
1444 			if (retval) {
1445 				ret = ERR_PTR(retval);
1446 				ra_max = 0;
1447 				goto cleanup_and_exit;
1448 			}
1449 		}
1450 		if ((bh = bh_use[ra_ptr++]) == NULL)
1451 			goto next;
1452 		wait_on_buffer(bh);
1453 		if (!buffer_uptodate(bh)) {
1454 			EXT4_ERROR_INODE(dir, "reading directory lblock %lu",
1455 					 (unsigned long) block);
1456 			brelse(bh);
1457 			ret = ERR_PTR(-EIO);
1458 			goto cleanup_and_exit;
1459 		}
1460 		if (!buffer_verified(bh) &&
1461 		    !is_dx_internal_node(dir, block,
1462 					 (struct ext4_dir_entry *)bh->b_data) &&
1463 		    !ext4_dirent_csum_verify(dir,
1464 				(struct ext4_dir_entry *)bh->b_data)) {
1465 			EXT4_ERROR_INODE(dir, "checksumming directory "
1466 					 "block %lu", (unsigned long)block);
1467 			brelse(bh);
1468 			ret = ERR_PTR(-EFSBADCRC);
1469 			goto cleanup_and_exit;
1470 		}
1471 		set_buffer_verified(bh);
1472 		i = search_dirblock(bh, dir, &fname,
1473 			    block << EXT4_BLOCK_SIZE_BITS(sb), res_dir);
1474 		if (i == 1) {
1475 			EXT4_I(dir)->i_dir_start_lookup = block;
1476 			ret = bh;
1477 			goto cleanup_and_exit;
1478 		} else {
1479 			brelse(bh);
1480 			if (i < 0)
1481 				goto cleanup_and_exit;
1482 		}
1483 	next:
1484 		if (++block >= nblocks)
1485 			block = 0;
1486 	} while (block != start);
1487 
1488 	/*
1489 	 * If the directory has grown while we were searching, then
1490 	 * search the last part of the directory before giving up.
1491 	 */
1492 	block = nblocks;
1493 	nblocks = dir->i_size >> EXT4_BLOCK_SIZE_BITS(sb);
1494 	if (block < nblocks) {
1495 		start = 0;
1496 		goto restart;
1497 	}
1498 
1499 cleanup_and_exit:
1500 	/* Clean up the read-ahead blocks */
1501 	for (; ra_ptr < ra_max; ra_ptr++)
1502 		brelse(bh_use[ra_ptr]);
1503 	ext4_fname_free_filename(&fname);
1504 	return ret;
1505 }
1506 
ext4_dx_find_entry(struct inode * dir,struct ext4_filename * fname,struct ext4_dir_entry_2 ** res_dir)1507 static struct buffer_head * ext4_dx_find_entry(struct inode *dir,
1508 			struct ext4_filename *fname,
1509 			struct ext4_dir_entry_2 **res_dir)
1510 {
1511 	struct super_block * sb = dir->i_sb;
1512 	struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
1513 	struct buffer_head *bh;
1514 	ext4_lblk_t block;
1515 	int retval;
1516 
1517 #ifdef CONFIG_EXT4_FS_ENCRYPTION
1518 	*res_dir = NULL;
1519 #endif
1520 	frame = dx_probe(fname, dir, NULL, frames);
1521 	if (IS_ERR(frame))
1522 		return (struct buffer_head *) frame;
1523 	do {
1524 		block = dx_get_block(frame->at);
1525 		bh = ext4_read_dirblock(dir, block, DIRENT_HTREE);
1526 		if (IS_ERR(bh))
1527 			goto errout;
1528 
1529 		retval = search_dirblock(bh, dir, fname,
1530 					 block << EXT4_BLOCK_SIZE_BITS(sb),
1531 					 res_dir);
1532 		if (retval == 1)
1533 			goto success;
1534 		brelse(bh);
1535 		if (retval == -1) {
1536 			bh = ERR_PTR(ERR_BAD_DX_DIR);
1537 			goto errout;
1538 		}
1539 
1540 		/* Check to see if we should continue to search */
1541 		retval = ext4_htree_next_block(dir, fname->hinfo.hash, frame,
1542 					       frames, NULL);
1543 		if (retval < 0) {
1544 			ext4_warning_inode(dir,
1545 				"error %d reading directory index block",
1546 				retval);
1547 			bh = ERR_PTR(retval);
1548 			goto errout;
1549 		}
1550 	} while (retval == 1);
1551 
1552 	bh = NULL;
1553 errout:
1554 	dxtrace(printk(KERN_DEBUG "%s not found\n", fname->usr_fname->name));
1555 success:
1556 	dx_release(frames);
1557 	return bh;
1558 }
1559 
ext4_lookup(struct inode * dir,struct dentry * dentry,unsigned int flags)1560 static struct dentry *ext4_lookup(struct inode *dir, struct dentry *dentry, unsigned int flags)
1561 {
1562 	struct inode *inode;
1563 	struct ext4_dir_entry_2 *de;
1564 	struct buffer_head *bh;
1565 	int err;
1566 
1567 	err = fscrypt_prepare_lookup(dir, dentry, flags);
1568 	if (err)
1569 		return ERR_PTR(err);
1570 
1571 	if (dentry->d_name.len > EXT4_NAME_LEN)
1572 		return ERR_PTR(-ENAMETOOLONG);
1573 
1574 	bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
1575 	if (IS_ERR(bh))
1576 		return (struct dentry *) bh;
1577 	inode = NULL;
1578 	if (bh) {
1579 		__u32 ino = le32_to_cpu(de->inode);
1580 		brelse(bh);
1581 		if (!ext4_valid_inum(dir->i_sb, ino)) {
1582 			EXT4_ERROR_INODE(dir, "bad inode number: %u", ino);
1583 			return ERR_PTR(-EFSCORRUPTED);
1584 		}
1585 		if (unlikely(ino == dir->i_ino)) {
1586 			EXT4_ERROR_INODE(dir, "'%pd' linked to parent dir",
1587 					 dentry);
1588 			return ERR_PTR(-EFSCORRUPTED);
1589 		}
1590 		inode = ext4_iget_normal(dir->i_sb, ino);
1591 		if (inode == ERR_PTR(-ESTALE)) {
1592 			EXT4_ERROR_INODE(dir,
1593 					 "deleted inode referenced: %u",
1594 					 ino);
1595 			return ERR_PTR(-EFSCORRUPTED);
1596 		}
1597 		if (!IS_ERR(inode) && ext4_encrypted_inode(dir) &&
1598 		    (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
1599 		    !fscrypt_has_permitted_context(dir, inode)) {
1600 			ext4_warning(inode->i_sb,
1601 				     "Inconsistent encryption contexts: %lu/%lu",
1602 				     dir->i_ino, inode->i_ino);
1603 			iput(inode);
1604 			return ERR_PTR(-EPERM);
1605 		}
1606 	}
1607 	return d_splice_alias(inode, dentry);
1608 }
1609 
1610 
ext4_get_parent(struct dentry * child)1611 struct dentry *ext4_get_parent(struct dentry *child)
1612 {
1613 	__u32 ino;
1614 	static const struct qstr dotdot = QSTR_INIT("..", 2);
1615 	struct ext4_dir_entry_2 * de;
1616 	struct buffer_head *bh;
1617 
1618 	bh = ext4_find_entry(d_inode(child), &dotdot, &de, NULL);
1619 	if (IS_ERR(bh))
1620 		return (struct dentry *) bh;
1621 	if (!bh)
1622 		return ERR_PTR(-ENOENT);
1623 	ino = le32_to_cpu(de->inode);
1624 	brelse(bh);
1625 
1626 	if (!ext4_valid_inum(child->d_sb, ino)) {
1627 		EXT4_ERROR_INODE(d_inode(child),
1628 				 "bad parent inode number: %u", ino);
1629 		return ERR_PTR(-EFSCORRUPTED);
1630 	}
1631 
1632 	return d_obtain_alias(ext4_iget_normal(child->d_sb, ino));
1633 }
1634 
1635 /*
1636  * Move count entries from end of map between two memory locations.
1637  * Returns pointer to last entry moved.
1638  */
1639 static struct ext4_dir_entry_2 *
dx_move_dirents(char * from,char * to,struct dx_map_entry * map,int count,unsigned blocksize)1640 dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count,
1641 		unsigned blocksize)
1642 {
1643 	unsigned rec_len = 0;
1644 
1645 	while (count--) {
1646 		struct ext4_dir_entry_2 *de = (struct ext4_dir_entry_2 *)
1647 						(from + (map->offs<<2));
1648 		rec_len = EXT4_DIR_REC_LEN(de->name_len);
1649 		memcpy (to, de, rec_len);
1650 		((struct ext4_dir_entry_2 *) to)->rec_len =
1651 				ext4_rec_len_to_disk(rec_len, blocksize);
1652 		de->inode = 0;
1653 		map++;
1654 		to += rec_len;
1655 	}
1656 	return (struct ext4_dir_entry_2 *) (to - rec_len);
1657 }
1658 
1659 /*
1660  * Compact each dir entry in the range to the minimal rec_len.
1661  * Returns pointer to last entry in range.
1662  */
dx_pack_dirents(char * base,unsigned blocksize)1663 static struct ext4_dir_entry_2* dx_pack_dirents(char *base, unsigned blocksize)
1664 {
1665 	struct ext4_dir_entry_2 *next, *to, *prev, *de = (struct ext4_dir_entry_2 *) base;
1666 	unsigned rec_len = 0;
1667 
1668 	prev = to = de;
1669 	while ((char*)de < base + blocksize) {
1670 		next = ext4_next_entry(de, blocksize);
1671 		if (de->inode && de->name_len) {
1672 			rec_len = EXT4_DIR_REC_LEN(de->name_len);
1673 			if (de > to)
1674 				memmove(to, de, rec_len);
1675 			to->rec_len = ext4_rec_len_to_disk(rec_len, blocksize);
1676 			prev = to;
1677 			to = (struct ext4_dir_entry_2 *) (((char *) to) + rec_len);
1678 		}
1679 		de = next;
1680 	}
1681 	return prev;
1682 }
1683 
1684 /*
1685  * Split a full leaf block to make room for a new dir entry.
1686  * Allocate a new block, and move entries so that they are approx. equally full.
1687  * Returns pointer to de in block into which the new entry will be inserted.
1688  */
do_split(handle_t * handle,struct inode * dir,struct buffer_head ** bh,struct dx_frame * frame,struct dx_hash_info * hinfo)1689 static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
1690 			struct buffer_head **bh,struct dx_frame *frame,
1691 			struct dx_hash_info *hinfo)
1692 {
1693 	unsigned blocksize = dir->i_sb->s_blocksize;
1694 	unsigned count, continued;
1695 	struct buffer_head *bh2;
1696 	ext4_lblk_t newblock;
1697 	u32 hash2;
1698 	struct dx_map_entry *map;
1699 	char *data1 = (*bh)->b_data, *data2;
1700 	unsigned split, move, size;
1701 	struct ext4_dir_entry_2 *de = NULL, *de2;
1702 	struct ext4_dir_entry_tail *t;
1703 	int	csum_size = 0;
1704 	int	err = 0, i;
1705 
1706 	if (ext4_has_metadata_csum(dir->i_sb))
1707 		csum_size = sizeof(struct ext4_dir_entry_tail);
1708 
1709 	bh2 = ext4_append(handle, dir, &newblock);
1710 	if (IS_ERR(bh2)) {
1711 		brelse(*bh);
1712 		*bh = NULL;
1713 		return (struct ext4_dir_entry_2 *) bh2;
1714 	}
1715 
1716 	BUFFER_TRACE(*bh, "get_write_access");
1717 	err = ext4_journal_get_write_access(handle, *bh);
1718 	if (err)
1719 		goto journal_error;
1720 
1721 	BUFFER_TRACE(frame->bh, "get_write_access");
1722 	err = ext4_journal_get_write_access(handle, frame->bh);
1723 	if (err)
1724 		goto journal_error;
1725 
1726 	data2 = bh2->b_data;
1727 
1728 	/* create map in the end of data2 block */
1729 	map = (struct dx_map_entry *) (data2 + blocksize);
1730 	count = dx_make_map(dir, (struct ext4_dir_entry_2 *) data1,
1731 			     blocksize, hinfo, map);
1732 	map -= count;
1733 	dx_sort_map(map, count);
1734 	/* Split the existing block in the middle, size-wise */
1735 	size = 0;
1736 	move = 0;
1737 	for (i = count-1; i >= 0; i--) {
1738 		/* is more than half of this entry in 2nd half of the block? */
1739 		if (size + map[i].size/2 > blocksize/2)
1740 			break;
1741 		size += map[i].size;
1742 		move++;
1743 	}
1744 	/* map index at which we will split */
1745 	split = count - move;
1746 	hash2 = map[split].hash;
1747 	continued = hash2 == map[split - 1].hash;
1748 	dxtrace(printk(KERN_INFO "Split block %lu at %x, %i/%i\n",
1749 			(unsigned long)dx_get_block(frame->at),
1750 					hash2, split, count-split));
1751 
1752 	/* Fancy dance to stay within two buffers */
1753 	de2 = dx_move_dirents(data1, data2, map + split, count - split,
1754 			      blocksize);
1755 	de = dx_pack_dirents(data1, blocksize);
1756 	de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1757 					   (char *) de,
1758 					   blocksize);
1759 	de2->rec_len = ext4_rec_len_to_disk(data2 + (blocksize - csum_size) -
1760 					    (char *) de2,
1761 					    blocksize);
1762 	if (csum_size) {
1763 		t = EXT4_DIRENT_TAIL(data2, blocksize);
1764 		initialize_dirent_tail(t, blocksize);
1765 
1766 		t = EXT4_DIRENT_TAIL(data1, blocksize);
1767 		initialize_dirent_tail(t, blocksize);
1768 	}
1769 
1770 	dxtrace(dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) data1,
1771 			blocksize, 1));
1772 	dxtrace(dx_show_leaf(dir, hinfo, (struct ext4_dir_entry_2 *) data2,
1773 			blocksize, 1));
1774 
1775 	/* Which block gets the new entry? */
1776 	if (hinfo->hash >= hash2) {
1777 		swap(*bh, bh2);
1778 		de = de2;
1779 	}
1780 	dx_insert_block(frame, hash2 + continued, newblock);
1781 	err = ext4_handle_dirty_dirent_node(handle, dir, bh2);
1782 	if (err)
1783 		goto journal_error;
1784 	err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
1785 	if (err)
1786 		goto journal_error;
1787 	brelse(bh2);
1788 	dxtrace(dx_show_index("frame", frame->entries));
1789 	return de;
1790 
1791 journal_error:
1792 	brelse(*bh);
1793 	brelse(bh2);
1794 	*bh = NULL;
1795 	ext4_std_error(dir->i_sb, err);
1796 	return ERR_PTR(err);
1797 }
1798 
ext4_find_dest_de(struct inode * dir,struct inode * inode,struct buffer_head * bh,void * buf,int buf_size,struct ext4_filename * fname,struct ext4_dir_entry_2 ** dest_de)1799 int ext4_find_dest_de(struct inode *dir, struct inode *inode,
1800 		      struct buffer_head *bh,
1801 		      void *buf, int buf_size,
1802 		      struct ext4_filename *fname,
1803 		      struct ext4_dir_entry_2 **dest_de)
1804 {
1805 	struct ext4_dir_entry_2 *de;
1806 	unsigned short reclen = EXT4_DIR_REC_LEN(fname_len(fname));
1807 	int nlen, rlen;
1808 	unsigned int offset = 0;
1809 	char *top;
1810 
1811 	de = (struct ext4_dir_entry_2 *)buf;
1812 	top = buf + buf_size - reclen;
1813 	while ((char *) de <= top) {
1814 		if (ext4_check_dir_entry(dir, NULL, de, bh,
1815 					 buf, buf_size, offset))
1816 			return -EFSCORRUPTED;
1817 		if (ext4_match(fname, de))
1818 			return -EEXIST;
1819 		nlen = EXT4_DIR_REC_LEN(de->name_len);
1820 		rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1821 		if ((de->inode ? rlen - nlen : rlen) >= reclen)
1822 			break;
1823 		de = (struct ext4_dir_entry_2 *)((char *)de + rlen);
1824 		offset += rlen;
1825 	}
1826 	if ((char *) de > top)
1827 		return -ENOSPC;
1828 
1829 	*dest_de = de;
1830 	return 0;
1831 }
1832 
ext4_insert_dentry(struct inode * inode,struct ext4_dir_entry_2 * de,int buf_size,struct ext4_filename * fname)1833 void ext4_insert_dentry(struct inode *inode,
1834 			struct ext4_dir_entry_2 *de,
1835 			int buf_size,
1836 			struct ext4_filename *fname)
1837 {
1838 
1839 	int nlen, rlen;
1840 
1841 	nlen = EXT4_DIR_REC_LEN(de->name_len);
1842 	rlen = ext4_rec_len_from_disk(de->rec_len, buf_size);
1843 	if (de->inode) {
1844 		struct ext4_dir_entry_2 *de1 =
1845 			(struct ext4_dir_entry_2 *)((char *)de + nlen);
1846 		de1->rec_len = ext4_rec_len_to_disk(rlen - nlen, buf_size);
1847 		de->rec_len = ext4_rec_len_to_disk(nlen, buf_size);
1848 		de = de1;
1849 	}
1850 	de->file_type = EXT4_FT_UNKNOWN;
1851 	de->inode = cpu_to_le32(inode->i_ino);
1852 	ext4_set_de_type(inode->i_sb, de, inode->i_mode);
1853 	de->name_len = fname_len(fname);
1854 	memcpy(de->name, fname_name(fname), fname_len(fname));
1855 }
1856 
1857 /*
1858  * Add a new entry into a directory (leaf) block.  If de is non-NULL,
1859  * it points to a directory entry which is guaranteed to be large
1860  * enough for new directory entry.  If de is NULL, then
1861  * add_dirent_to_buf will attempt search the directory block for
1862  * space.  It will return -ENOSPC if no space is available, and -EIO
1863  * and -EEXIST if directory entry already exists.
1864  */
add_dirent_to_buf(handle_t * handle,struct ext4_filename * fname,struct inode * dir,struct inode * inode,struct ext4_dir_entry_2 * de,struct buffer_head * bh)1865 static int add_dirent_to_buf(handle_t *handle, struct ext4_filename *fname,
1866 			     struct inode *dir,
1867 			     struct inode *inode, struct ext4_dir_entry_2 *de,
1868 			     struct buffer_head *bh)
1869 {
1870 	unsigned int	blocksize = dir->i_sb->s_blocksize;
1871 	int		csum_size = 0;
1872 	int		err;
1873 
1874 	if (ext4_has_metadata_csum(inode->i_sb))
1875 		csum_size = sizeof(struct ext4_dir_entry_tail);
1876 
1877 	if (!de) {
1878 		err = ext4_find_dest_de(dir, inode, bh, bh->b_data,
1879 					blocksize - csum_size, fname, &de);
1880 		if (err)
1881 			return err;
1882 	}
1883 	BUFFER_TRACE(bh, "get_write_access");
1884 	err = ext4_journal_get_write_access(handle, bh);
1885 	if (err) {
1886 		ext4_std_error(dir->i_sb, err);
1887 		return err;
1888 	}
1889 
1890 	/* By now the buffer is marked for journaling */
1891 	ext4_insert_dentry(inode, de, blocksize, fname);
1892 
1893 	/*
1894 	 * XXX shouldn't update any times until successful
1895 	 * completion of syscall, but too many callers depend
1896 	 * on this.
1897 	 *
1898 	 * XXX similarly, too many callers depend on
1899 	 * ext4_new_inode() setting the times, but error
1900 	 * recovery deletes the inode, so the worst that can
1901 	 * happen is that the times are slightly out of date
1902 	 * and/or different from the directory change time.
1903 	 */
1904 	dir->i_mtime = dir->i_ctime = current_time(dir);
1905 	ext4_update_dx_flag(dir);
1906 	inode_inc_iversion(dir);
1907 	ext4_mark_inode_dirty(handle, dir);
1908 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1909 	err = ext4_handle_dirty_dirent_node(handle, dir, bh);
1910 	if (err)
1911 		ext4_std_error(dir->i_sb, err);
1912 	return 0;
1913 }
1914 
1915 /*
1916  * This converts a one block unindexed directory to a 3 block indexed
1917  * directory, and adds the dentry to the indexed directory.
1918  */
make_indexed_dir(handle_t * handle,struct ext4_filename * fname,struct inode * dir,struct inode * inode,struct buffer_head * bh)1919 static int make_indexed_dir(handle_t *handle, struct ext4_filename *fname,
1920 			    struct inode *dir,
1921 			    struct inode *inode, struct buffer_head *bh)
1922 {
1923 	struct buffer_head *bh2;
1924 	struct dx_root	*root;
1925 	struct dx_frame	frames[EXT4_HTREE_LEVEL], *frame;
1926 	struct dx_entry *entries;
1927 	struct ext4_dir_entry_2	*de, *de2;
1928 	struct ext4_dir_entry_tail *t;
1929 	char		*data1, *top;
1930 	unsigned	len;
1931 	int		retval;
1932 	unsigned	blocksize;
1933 	ext4_lblk_t  block;
1934 	struct fake_dirent *fde;
1935 	int csum_size = 0;
1936 
1937 	if (ext4_has_metadata_csum(inode->i_sb))
1938 		csum_size = sizeof(struct ext4_dir_entry_tail);
1939 
1940 	blocksize =  dir->i_sb->s_blocksize;
1941 	dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
1942 	BUFFER_TRACE(bh, "get_write_access");
1943 	retval = ext4_journal_get_write_access(handle, bh);
1944 	if (retval) {
1945 		ext4_std_error(dir->i_sb, retval);
1946 		brelse(bh);
1947 		return retval;
1948 	}
1949 	root = (struct dx_root *) bh->b_data;
1950 
1951 	/* The 0th block becomes the root, move the dirents out */
1952 	fde = &root->dotdot;
1953 	de = (struct ext4_dir_entry_2 *)((char *)fde +
1954 		ext4_rec_len_from_disk(fde->rec_len, blocksize));
1955 	if ((char *) de >= (((char *) root) + blocksize)) {
1956 		EXT4_ERROR_INODE(dir, "invalid rec_len for '..'");
1957 		brelse(bh);
1958 		return -EFSCORRUPTED;
1959 	}
1960 	len = ((char *) root) + (blocksize - csum_size) - (char *) de;
1961 
1962 	/* Allocate new block for the 0th block's dirents */
1963 	bh2 = ext4_append(handle, dir, &block);
1964 	if (IS_ERR(bh2)) {
1965 		brelse(bh);
1966 		return PTR_ERR(bh2);
1967 	}
1968 	ext4_set_inode_flag(dir, EXT4_INODE_INDEX);
1969 	data1 = bh2->b_data;
1970 
1971 	memcpy (data1, de, len);
1972 	de = (struct ext4_dir_entry_2 *) data1;
1973 	top = data1 + len;
1974 	while ((char *)(de2 = ext4_next_entry(de, blocksize)) < top)
1975 		de = de2;
1976 	de->rec_len = ext4_rec_len_to_disk(data1 + (blocksize - csum_size) -
1977 					   (char *) de,
1978 					   blocksize);
1979 
1980 	if (csum_size) {
1981 		t = EXT4_DIRENT_TAIL(data1, blocksize);
1982 		initialize_dirent_tail(t, blocksize);
1983 	}
1984 
1985 	/* Initialize the root; the dot dirents already exist */
1986 	de = (struct ext4_dir_entry_2 *) (&root->dotdot);
1987 	de->rec_len = ext4_rec_len_to_disk(blocksize - EXT4_DIR_REC_LEN(2),
1988 					   blocksize);
1989 	memset (&root->info, 0, sizeof(root->info));
1990 	root->info.info_length = sizeof(root->info);
1991 	root->info.hash_version = EXT4_SB(dir->i_sb)->s_def_hash_version;
1992 	entries = root->entries;
1993 	dx_set_block(entries, 1);
1994 	dx_set_count(entries, 1);
1995 	dx_set_limit(entries, dx_root_limit(dir, sizeof(root->info)));
1996 
1997 	/* Initialize as for dx_probe */
1998 	fname->hinfo.hash_version = root->info.hash_version;
1999 	if (fname->hinfo.hash_version <= DX_HASH_TEA)
2000 		fname->hinfo.hash_version += EXT4_SB(dir->i_sb)->s_hash_unsigned;
2001 	fname->hinfo.seed = EXT4_SB(dir->i_sb)->s_hash_seed;
2002 	ext4fs_dirhash(fname_name(fname), fname_len(fname), &fname->hinfo);
2003 
2004 	memset(frames, 0, sizeof(frames));
2005 	frame = frames;
2006 	frame->entries = entries;
2007 	frame->at = entries;
2008 	frame->bh = bh;
2009 
2010 	retval = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
2011 	if (retval)
2012 		goto out_frames;
2013 	retval = ext4_handle_dirty_dirent_node(handle, dir, bh2);
2014 	if (retval)
2015 		goto out_frames;
2016 
2017 	de = do_split(handle,dir, &bh2, frame, &fname->hinfo);
2018 	if (IS_ERR(de)) {
2019 		retval = PTR_ERR(de);
2020 		goto out_frames;
2021 	}
2022 
2023 	retval = add_dirent_to_buf(handle, fname, dir, inode, de, bh2);
2024 out_frames:
2025 	/*
2026 	 * Even if the block split failed, we have to properly write
2027 	 * out all the changes we did so far. Otherwise we can end up
2028 	 * with corrupted filesystem.
2029 	 */
2030 	if (retval)
2031 		ext4_mark_inode_dirty(handle, dir);
2032 	dx_release(frames);
2033 	brelse(bh2);
2034 	return retval;
2035 }
2036 
2037 /*
2038  *	ext4_add_entry()
2039  *
2040  * adds a file entry to the specified directory, using the same
2041  * semantics as ext4_find_entry(). It returns NULL if it failed.
2042  *
2043  * NOTE!! The inode part of 'de' is left at 0 - which means you
2044  * may not sleep between calling this and putting something into
2045  * the entry, as someone else might have used it while you slept.
2046  */
ext4_add_entry(handle_t * handle,struct dentry * dentry,struct inode * inode)2047 static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
2048 			  struct inode *inode)
2049 {
2050 	struct inode *dir = d_inode(dentry->d_parent);
2051 	struct buffer_head *bh = NULL;
2052 	struct ext4_dir_entry_2 *de;
2053 	struct ext4_dir_entry_tail *t;
2054 	struct super_block *sb;
2055 	struct ext4_filename fname;
2056 	int	retval;
2057 	int	dx_fallback=0;
2058 	unsigned blocksize;
2059 	ext4_lblk_t block, blocks;
2060 	int	csum_size = 0;
2061 
2062 	if (ext4_has_metadata_csum(inode->i_sb))
2063 		csum_size = sizeof(struct ext4_dir_entry_tail);
2064 
2065 	sb = dir->i_sb;
2066 	blocksize = sb->s_blocksize;
2067 	if (!dentry->d_name.len)
2068 		return -EINVAL;
2069 
2070 	retval = ext4_fname_setup_filename(dir, &dentry->d_name, 0, &fname);
2071 	if (retval)
2072 		return retval;
2073 
2074 	if (ext4_has_inline_data(dir)) {
2075 		retval = ext4_try_add_inline_entry(handle, &fname, dir, inode);
2076 		if (retval < 0)
2077 			goto out;
2078 		if (retval == 1) {
2079 			retval = 0;
2080 			goto out;
2081 		}
2082 	}
2083 
2084 	if (is_dx(dir)) {
2085 		retval = ext4_dx_add_entry(handle, &fname, dir, inode);
2086 		if (!retval || (retval != ERR_BAD_DX_DIR))
2087 			goto out;
2088 		/* Can we just ignore htree data? */
2089 		if (ext4_has_metadata_csum(sb)) {
2090 			EXT4_ERROR_INODE(dir,
2091 				"Directory has corrupted htree index.");
2092 			retval = -EFSCORRUPTED;
2093 			goto out;
2094 		}
2095 		ext4_clear_inode_flag(dir, EXT4_INODE_INDEX);
2096 		dx_fallback++;
2097 		ext4_mark_inode_dirty(handle, dir);
2098 	}
2099 	blocks = dir->i_size >> sb->s_blocksize_bits;
2100 	for (block = 0; block < blocks; block++) {
2101 		bh = ext4_read_dirblock(dir, block, DIRENT);
2102 		if (bh == NULL) {
2103 			bh = ext4_bread(handle, dir, block,
2104 					EXT4_GET_BLOCKS_CREATE);
2105 			goto add_to_new_block;
2106 		}
2107 		if (IS_ERR(bh)) {
2108 			retval = PTR_ERR(bh);
2109 			bh = NULL;
2110 			goto out;
2111 		}
2112 		retval = add_dirent_to_buf(handle, &fname, dir, inode,
2113 					   NULL, bh);
2114 		if (retval != -ENOSPC)
2115 			goto out;
2116 
2117 		if (blocks == 1 && !dx_fallback &&
2118 		    ext4_has_feature_dir_index(sb)) {
2119 			retval = make_indexed_dir(handle, &fname, dir,
2120 						  inode, bh);
2121 			bh = NULL; /* make_indexed_dir releases bh */
2122 			goto out;
2123 		}
2124 		brelse(bh);
2125 	}
2126 	bh = ext4_append(handle, dir, &block);
2127 add_to_new_block:
2128 	if (IS_ERR(bh)) {
2129 		retval = PTR_ERR(bh);
2130 		bh = NULL;
2131 		goto out;
2132 	}
2133 	de = (struct ext4_dir_entry_2 *) bh->b_data;
2134 	de->inode = 0;
2135 	de->rec_len = ext4_rec_len_to_disk(blocksize - csum_size, blocksize);
2136 
2137 	if (csum_size) {
2138 		t = EXT4_DIRENT_TAIL(bh->b_data, blocksize);
2139 		initialize_dirent_tail(t, blocksize);
2140 	}
2141 
2142 	retval = add_dirent_to_buf(handle, &fname, dir, inode, de, bh);
2143 out:
2144 	ext4_fname_free_filename(&fname);
2145 	brelse(bh);
2146 	if (retval == 0)
2147 		ext4_set_inode_state(inode, EXT4_STATE_NEWENTRY);
2148 	return retval;
2149 }
2150 
2151 /*
2152  * Returns 0 for success, or a negative error value
2153  */
ext4_dx_add_entry(handle_t * handle,struct ext4_filename * fname,struct inode * dir,struct inode * inode)2154 static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
2155 			     struct inode *dir, struct inode *inode)
2156 {
2157 	struct dx_frame frames[EXT4_HTREE_LEVEL], *frame;
2158 	struct dx_entry *entries, *at;
2159 	struct buffer_head *bh;
2160 	struct super_block *sb = dir->i_sb;
2161 	struct ext4_dir_entry_2 *de;
2162 	int restart;
2163 	int err;
2164 
2165 again:
2166 	restart = 0;
2167 	frame = dx_probe(fname, dir, NULL, frames);
2168 	if (IS_ERR(frame))
2169 		return PTR_ERR(frame);
2170 	entries = frame->entries;
2171 	at = frame->at;
2172 	bh = ext4_read_dirblock(dir, dx_get_block(frame->at), DIRENT_HTREE);
2173 	if (IS_ERR(bh)) {
2174 		err = PTR_ERR(bh);
2175 		bh = NULL;
2176 		goto cleanup;
2177 	}
2178 
2179 	BUFFER_TRACE(bh, "get_write_access");
2180 	err = ext4_journal_get_write_access(handle, bh);
2181 	if (err)
2182 		goto journal_error;
2183 
2184 	err = add_dirent_to_buf(handle, fname, dir, inode, NULL, bh);
2185 	if (err != -ENOSPC)
2186 		goto cleanup;
2187 
2188 	err = 0;
2189 	/* Block full, should compress but for now just split */
2190 	dxtrace(printk(KERN_DEBUG "using %u of %u node entries\n",
2191 		       dx_get_count(entries), dx_get_limit(entries)));
2192 	/* Need to split index? */
2193 	if (dx_get_count(entries) == dx_get_limit(entries)) {
2194 		ext4_lblk_t newblock;
2195 		int levels = frame - frames + 1;
2196 		unsigned int icount;
2197 		int add_level = 1;
2198 		struct dx_entry *entries2;
2199 		struct dx_node *node2;
2200 		struct buffer_head *bh2;
2201 
2202 		while (frame > frames) {
2203 			if (dx_get_count((frame - 1)->entries) <
2204 			    dx_get_limit((frame - 1)->entries)) {
2205 				add_level = 0;
2206 				break;
2207 			}
2208 			frame--; /* split higher index block */
2209 			at = frame->at;
2210 			entries = frame->entries;
2211 			restart = 1;
2212 		}
2213 		if (add_level && levels == ext4_dir_htree_level(sb)) {
2214 			ext4_warning(sb, "Directory (ino: %lu) index full, "
2215 					 "reach max htree level :%d",
2216 					 dir->i_ino, levels);
2217 			if (ext4_dir_htree_level(sb) < EXT4_HTREE_LEVEL) {
2218 				ext4_warning(sb, "Large directory feature is "
2219 						 "not enabled on this "
2220 						 "filesystem");
2221 			}
2222 			err = -ENOSPC;
2223 			goto cleanup;
2224 		}
2225 		icount = dx_get_count(entries);
2226 		bh2 = ext4_append(handle, dir, &newblock);
2227 		if (IS_ERR(bh2)) {
2228 			err = PTR_ERR(bh2);
2229 			goto cleanup;
2230 		}
2231 		node2 = (struct dx_node *)(bh2->b_data);
2232 		entries2 = node2->entries;
2233 		memset(&node2->fake, 0, sizeof(struct fake_dirent));
2234 		node2->fake.rec_len = ext4_rec_len_to_disk(sb->s_blocksize,
2235 							   sb->s_blocksize);
2236 		BUFFER_TRACE(frame->bh, "get_write_access");
2237 		err = ext4_journal_get_write_access(handle, frame->bh);
2238 		if (err)
2239 			goto journal_error;
2240 		if (!add_level) {
2241 			unsigned icount1 = icount/2, icount2 = icount - icount1;
2242 			unsigned hash2 = dx_get_hash(entries + icount1);
2243 			dxtrace(printk(KERN_DEBUG "Split index %i/%i\n",
2244 				       icount1, icount2));
2245 
2246 			BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
2247 			err = ext4_journal_get_write_access(handle,
2248 							     (frame - 1)->bh);
2249 			if (err)
2250 				goto journal_error;
2251 
2252 			memcpy((char *) entries2, (char *) (entries + icount1),
2253 			       icount2 * sizeof(struct dx_entry));
2254 			dx_set_count(entries, icount1);
2255 			dx_set_count(entries2, icount2);
2256 			dx_set_limit(entries2, dx_node_limit(dir));
2257 
2258 			/* Which index block gets the new entry? */
2259 			if (at - entries >= icount1) {
2260 				frame->at = at = at - entries - icount1 + entries2;
2261 				frame->entries = entries = entries2;
2262 				swap(frame->bh, bh2);
2263 			}
2264 			dx_insert_block((frame - 1), hash2, newblock);
2265 			dxtrace(dx_show_index("node", frame->entries));
2266 			dxtrace(dx_show_index("node",
2267 			       ((struct dx_node *) bh2->b_data)->entries));
2268 			err = ext4_handle_dirty_dx_node(handle, dir, bh2);
2269 			if (err)
2270 				goto journal_error;
2271 			brelse (bh2);
2272 			err = ext4_handle_dirty_dx_node(handle, dir,
2273 						   (frame - 1)->bh);
2274 			if (err)
2275 				goto journal_error;
2276 			if (restart) {
2277 				err = ext4_handle_dirty_dx_node(handle, dir,
2278 							   frame->bh);
2279 				goto journal_error;
2280 			}
2281 		} else {
2282 			struct dx_root *dxroot;
2283 			memcpy((char *) entries2, (char *) entries,
2284 			       icount * sizeof(struct dx_entry));
2285 			dx_set_limit(entries2, dx_node_limit(dir));
2286 
2287 			/* Set up root */
2288 			dx_set_count(entries, 1);
2289 			dx_set_block(entries + 0, newblock);
2290 			dxroot = (struct dx_root *)frames[0].bh->b_data;
2291 			dxroot->info.indirect_levels += 1;
2292 			dxtrace(printk(KERN_DEBUG
2293 				       "Creating %d level index...\n",
2294 				       dxroot->info.indirect_levels));
2295 			err = ext4_handle_dirty_dx_node(handle, dir, frame->bh);
2296 			if (err)
2297 				goto journal_error;
2298 			err = ext4_handle_dirty_dx_node(handle, dir, bh2);
2299 			brelse(bh2);
2300 			restart = 1;
2301 			goto journal_error;
2302 		}
2303 	}
2304 	de = do_split(handle, dir, &bh, frame, &fname->hinfo);
2305 	if (IS_ERR(de)) {
2306 		err = PTR_ERR(de);
2307 		goto cleanup;
2308 	}
2309 	err = add_dirent_to_buf(handle, fname, dir, inode, de, bh);
2310 	goto cleanup;
2311 
2312 journal_error:
2313 	ext4_std_error(dir->i_sb, err); /* this is a no-op if err == 0 */
2314 cleanup:
2315 	brelse(bh);
2316 	dx_release(frames);
2317 	/* @restart is true means htree-path has been changed, we need to
2318 	 * repeat dx_probe() to find out valid htree-path
2319 	 */
2320 	if (restart && err == 0)
2321 		goto again;
2322 	return err;
2323 }
2324 
2325 /*
2326  * ext4_generic_delete_entry deletes a directory entry by merging it
2327  * with the previous entry
2328  */
ext4_generic_delete_entry(handle_t * handle,struct inode * dir,struct ext4_dir_entry_2 * de_del,struct buffer_head * bh,void * entry_buf,int buf_size,int csum_size)2329 int ext4_generic_delete_entry(handle_t *handle,
2330 			      struct inode *dir,
2331 			      struct ext4_dir_entry_2 *de_del,
2332 			      struct buffer_head *bh,
2333 			      void *entry_buf,
2334 			      int buf_size,
2335 			      int csum_size)
2336 {
2337 	struct ext4_dir_entry_2 *de, *pde;
2338 	unsigned int blocksize = dir->i_sb->s_blocksize;
2339 	int i;
2340 
2341 	i = 0;
2342 	pde = NULL;
2343 	de = (struct ext4_dir_entry_2 *)entry_buf;
2344 	while (i < buf_size - csum_size) {
2345 		if (ext4_check_dir_entry(dir, NULL, de, bh,
2346 					 bh->b_data, bh->b_size, i))
2347 			return -EFSCORRUPTED;
2348 		if (de == de_del)  {
2349 			if (pde)
2350 				pde->rec_len = ext4_rec_len_to_disk(
2351 					ext4_rec_len_from_disk(pde->rec_len,
2352 							       blocksize) +
2353 					ext4_rec_len_from_disk(de->rec_len,
2354 							       blocksize),
2355 					blocksize);
2356 			else
2357 				de->inode = 0;
2358 			inode_inc_iversion(dir);
2359 			return 0;
2360 		}
2361 		i += ext4_rec_len_from_disk(de->rec_len, blocksize);
2362 		pde = de;
2363 		de = ext4_next_entry(de, blocksize);
2364 	}
2365 	return -ENOENT;
2366 }
2367 
ext4_delete_entry(handle_t * handle,struct inode * dir,struct ext4_dir_entry_2 * de_del,struct buffer_head * bh)2368 static int ext4_delete_entry(handle_t *handle,
2369 			     struct inode *dir,
2370 			     struct ext4_dir_entry_2 *de_del,
2371 			     struct buffer_head *bh)
2372 {
2373 	int err, csum_size = 0;
2374 
2375 	if (ext4_has_inline_data(dir)) {
2376 		int has_inline_data = 1;
2377 		err = ext4_delete_inline_entry(handle, dir, de_del, bh,
2378 					       &has_inline_data);
2379 		if (has_inline_data)
2380 			return err;
2381 	}
2382 
2383 	if (ext4_has_metadata_csum(dir->i_sb))
2384 		csum_size = sizeof(struct ext4_dir_entry_tail);
2385 
2386 	BUFFER_TRACE(bh, "get_write_access");
2387 	err = ext4_journal_get_write_access(handle, bh);
2388 	if (unlikely(err))
2389 		goto out;
2390 
2391 	err = ext4_generic_delete_entry(handle, dir, de_del,
2392 					bh, bh->b_data,
2393 					dir->i_sb->s_blocksize, csum_size);
2394 	if (err)
2395 		goto out;
2396 
2397 	BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
2398 	err = ext4_handle_dirty_dirent_node(handle, dir, bh);
2399 	if (unlikely(err))
2400 		goto out;
2401 
2402 	return 0;
2403 out:
2404 	if (err != -ENOENT)
2405 		ext4_std_error(dir->i_sb, err);
2406 	return err;
2407 }
2408 
2409 /*
2410  * Set directory link count to 1 if nlinks > EXT4_LINK_MAX, or if nlinks == 2
2411  * since this indicates that nlinks count was previously 1 to avoid overflowing
2412  * the 16-bit i_links_count field on disk.  Directories with i_nlink == 1 mean
2413  * that subdirectory link counts are not being maintained accurately.
2414  *
2415  * The caller has already checked for i_nlink overflow in case the DIR_LINK
2416  * feature is not enabled and returned -EMLINK.  The is_dx() check is a proxy
2417  * for checking S_ISDIR(inode) (since the INODE_INDEX feature will not be set
2418  * on regular files) and to avoid creating huge/slow non-HTREE directories.
2419  */
ext4_inc_count(handle_t * handle,struct inode * inode)2420 static void ext4_inc_count(handle_t *handle, struct inode *inode)
2421 {
2422 	inc_nlink(inode);
2423 	if (is_dx(inode) &&
2424 	    (inode->i_nlink > EXT4_LINK_MAX || inode->i_nlink == 2))
2425 		set_nlink(inode, 1);
2426 }
2427 
2428 /*
2429  * If a directory had nlink == 1, then we should let it be 1. This indicates
2430  * directory has >EXT4_LINK_MAX subdirs.
2431  */
ext4_dec_count(handle_t * handle,struct inode * inode)2432 static void ext4_dec_count(handle_t *handle, struct inode *inode)
2433 {
2434 	if (!S_ISDIR(inode->i_mode) || inode->i_nlink > 2)
2435 		drop_nlink(inode);
2436 }
2437 
2438 
ext4_add_nondir(handle_t * handle,struct dentry * dentry,struct inode * inode)2439 static int ext4_add_nondir(handle_t *handle,
2440 		struct dentry *dentry, struct inode *inode)
2441 {
2442 	int err = ext4_add_entry(handle, dentry, inode);
2443 	if (!err) {
2444 		ext4_mark_inode_dirty(handle, inode);
2445 		d_instantiate_new(dentry, inode);
2446 		return 0;
2447 	}
2448 	drop_nlink(inode);
2449 	unlock_new_inode(inode);
2450 	iput(inode);
2451 	return err;
2452 }
2453 
2454 /*
2455  * By the time this is called, we already have created
2456  * the directory cache entry for the new file, but it
2457  * is so far negative - it has no inode.
2458  *
2459  * If the create succeeds, we fill in the inode information
2460  * with d_instantiate().
2461  */
ext4_create(struct inode * dir,struct dentry * dentry,umode_t mode,bool excl)2462 static int ext4_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2463 		       bool excl)
2464 {
2465 	handle_t *handle;
2466 	struct inode *inode;
2467 	int err, credits, retries = 0;
2468 
2469 	err = dquot_initialize(dir);
2470 	if (err)
2471 		return err;
2472 
2473 	credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2474 		   EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
2475 retry:
2476 	inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2477 					    NULL, EXT4_HT_DIR, credits);
2478 	handle = ext4_journal_current_handle();
2479 	err = PTR_ERR(inode);
2480 	if (!IS_ERR(inode)) {
2481 		inode->i_op = &ext4_file_inode_operations;
2482 		inode->i_fop = &ext4_file_operations;
2483 		ext4_set_aops(inode);
2484 		err = ext4_add_nondir(handle, dentry, inode);
2485 		if (!err && IS_DIRSYNC(dir))
2486 			ext4_handle_sync(handle);
2487 	}
2488 	if (handle)
2489 		ext4_journal_stop(handle);
2490 	if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2491 		goto retry;
2492 	return err;
2493 }
2494 
ext4_mknod(struct inode * dir,struct dentry * dentry,umode_t mode,dev_t rdev)2495 static int ext4_mknod(struct inode *dir, struct dentry *dentry,
2496 		      umode_t mode, dev_t rdev)
2497 {
2498 	handle_t *handle;
2499 	struct inode *inode;
2500 	int err, credits, retries = 0;
2501 
2502 	err = dquot_initialize(dir);
2503 	if (err)
2504 		return err;
2505 
2506 	credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2507 		   EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
2508 retry:
2509 	inode = ext4_new_inode_start_handle(dir, mode, &dentry->d_name, 0,
2510 					    NULL, EXT4_HT_DIR, credits);
2511 	handle = ext4_journal_current_handle();
2512 	err = PTR_ERR(inode);
2513 	if (!IS_ERR(inode)) {
2514 		init_special_inode(inode, inode->i_mode, rdev);
2515 		inode->i_op = &ext4_special_inode_operations;
2516 		err = ext4_add_nondir(handle, dentry, inode);
2517 		if (!err && IS_DIRSYNC(dir))
2518 			ext4_handle_sync(handle);
2519 	}
2520 	if (handle)
2521 		ext4_journal_stop(handle);
2522 	if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2523 		goto retry;
2524 	return err;
2525 }
2526 
ext4_tmpfile(struct inode * dir,struct dentry * dentry,umode_t mode)2527 static int ext4_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
2528 {
2529 	handle_t *handle;
2530 	struct inode *inode;
2531 	int err, retries = 0;
2532 
2533 	err = dquot_initialize(dir);
2534 	if (err)
2535 		return err;
2536 
2537 retry:
2538 	inode = ext4_new_inode_start_handle(dir, mode,
2539 					    NULL, 0, NULL,
2540 					    EXT4_HT_DIR,
2541 			EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
2542 			  4 + EXT4_XATTR_TRANS_BLOCKS);
2543 	handle = ext4_journal_current_handle();
2544 	err = PTR_ERR(inode);
2545 	if (!IS_ERR(inode)) {
2546 		inode->i_op = &ext4_file_inode_operations;
2547 		inode->i_fop = &ext4_file_operations;
2548 		ext4_set_aops(inode);
2549 		d_tmpfile(dentry, inode);
2550 		err = ext4_orphan_add(handle, inode);
2551 		if (err)
2552 			goto err_unlock_inode;
2553 		mark_inode_dirty(inode);
2554 		unlock_new_inode(inode);
2555 	}
2556 	if (handle)
2557 		ext4_journal_stop(handle);
2558 	if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2559 		goto retry;
2560 	return err;
2561 err_unlock_inode:
2562 	ext4_journal_stop(handle);
2563 	unlock_new_inode(inode);
2564 	return err;
2565 }
2566 
ext4_init_dot_dotdot(struct inode * inode,struct ext4_dir_entry_2 * de,int blocksize,int csum_size,unsigned int parent_ino,int dotdot_real_len)2567 struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
2568 			  struct ext4_dir_entry_2 *de,
2569 			  int blocksize, int csum_size,
2570 			  unsigned int parent_ino, int dotdot_real_len)
2571 {
2572 	de->inode = cpu_to_le32(inode->i_ino);
2573 	de->name_len = 1;
2574 	de->rec_len = ext4_rec_len_to_disk(EXT4_DIR_REC_LEN(de->name_len),
2575 					   blocksize);
2576 	strcpy(de->name, ".");
2577 	ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2578 
2579 	de = ext4_next_entry(de, blocksize);
2580 	de->inode = cpu_to_le32(parent_ino);
2581 	de->name_len = 2;
2582 	if (!dotdot_real_len)
2583 		de->rec_len = ext4_rec_len_to_disk(blocksize -
2584 					(csum_size + EXT4_DIR_REC_LEN(1)),
2585 					blocksize);
2586 	else
2587 		de->rec_len = ext4_rec_len_to_disk(
2588 				EXT4_DIR_REC_LEN(de->name_len), blocksize);
2589 	strcpy(de->name, "..");
2590 	ext4_set_de_type(inode->i_sb, de, S_IFDIR);
2591 
2592 	return ext4_next_entry(de, blocksize);
2593 }
2594 
ext4_init_new_dir(handle_t * handle,struct inode * dir,struct inode * inode)2595 static int ext4_init_new_dir(handle_t *handle, struct inode *dir,
2596 			     struct inode *inode)
2597 {
2598 	struct buffer_head *dir_block = NULL;
2599 	struct ext4_dir_entry_2 *de;
2600 	struct ext4_dir_entry_tail *t;
2601 	ext4_lblk_t block = 0;
2602 	unsigned int blocksize = dir->i_sb->s_blocksize;
2603 	int csum_size = 0;
2604 	int err;
2605 
2606 	if (ext4_has_metadata_csum(dir->i_sb))
2607 		csum_size = sizeof(struct ext4_dir_entry_tail);
2608 
2609 	if (ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) {
2610 		err = ext4_try_create_inline_dir(handle, dir, inode);
2611 		if (err < 0 && err != -ENOSPC)
2612 			goto out;
2613 		if (!err)
2614 			goto out;
2615 	}
2616 
2617 	inode->i_size = 0;
2618 	dir_block = ext4_append(handle, inode, &block);
2619 	if (IS_ERR(dir_block))
2620 		return PTR_ERR(dir_block);
2621 	de = (struct ext4_dir_entry_2 *)dir_block->b_data;
2622 	ext4_init_dot_dotdot(inode, de, blocksize, csum_size, dir->i_ino, 0);
2623 	set_nlink(inode, 2);
2624 	if (csum_size) {
2625 		t = EXT4_DIRENT_TAIL(dir_block->b_data, blocksize);
2626 		initialize_dirent_tail(t, blocksize);
2627 	}
2628 
2629 	BUFFER_TRACE(dir_block, "call ext4_handle_dirty_metadata");
2630 	err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
2631 	if (err)
2632 		goto out;
2633 	set_buffer_verified(dir_block);
2634 out:
2635 	brelse(dir_block);
2636 	return err;
2637 }
2638 
ext4_mkdir(struct inode * dir,struct dentry * dentry,umode_t mode)2639 static int ext4_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2640 {
2641 	handle_t *handle;
2642 	struct inode *inode;
2643 	int err, credits, retries = 0;
2644 
2645 	if (EXT4_DIR_LINK_MAX(dir))
2646 		return -EMLINK;
2647 
2648 	err = dquot_initialize(dir);
2649 	if (err)
2650 		return err;
2651 
2652 	credits = (EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
2653 		   EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3);
2654 retry:
2655 	inode = ext4_new_inode_start_handle(dir, S_IFDIR | mode,
2656 					    &dentry->d_name,
2657 					    0, NULL, EXT4_HT_DIR, credits);
2658 	handle = ext4_journal_current_handle();
2659 	err = PTR_ERR(inode);
2660 	if (IS_ERR(inode))
2661 		goto out_stop;
2662 
2663 	inode->i_op = &ext4_dir_inode_operations;
2664 	inode->i_fop = &ext4_dir_operations;
2665 	err = ext4_init_new_dir(handle, dir, inode);
2666 	if (err)
2667 		goto out_clear_inode;
2668 	err = ext4_mark_inode_dirty(handle, inode);
2669 	if (!err)
2670 		err = ext4_add_entry(handle, dentry, inode);
2671 	if (err) {
2672 out_clear_inode:
2673 		clear_nlink(inode);
2674 		unlock_new_inode(inode);
2675 		ext4_mark_inode_dirty(handle, inode);
2676 		iput(inode);
2677 		goto out_stop;
2678 	}
2679 	ext4_inc_count(handle, dir);
2680 	ext4_update_dx_flag(dir);
2681 	err = ext4_mark_inode_dirty(handle, dir);
2682 	if (err)
2683 		goto out_clear_inode;
2684 	d_instantiate_new(dentry, inode);
2685 	if (IS_DIRSYNC(dir))
2686 		ext4_handle_sync(handle);
2687 
2688 out_stop:
2689 	if (handle)
2690 		ext4_journal_stop(handle);
2691 	if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
2692 		goto retry;
2693 	return err;
2694 }
2695 
2696 /*
2697  * routine to check that the specified directory is empty (for rmdir)
2698  */
ext4_empty_dir(struct inode * inode)2699 bool ext4_empty_dir(struct inode *inode)
2700 {
2701 	unsigned int offset;
2702 	struct buffer_head *bh;
2703 	struct ext4_dir_entry_2 *de;
2704 	struct super_block *sb;
2705 
2706 	if (ext4_has_inline_data(inode)) {
2707 		int has_inline_data = 1;
2708 		int ret;
2709 
2710 		ret = empty_inline_dir(inode, &has_inline_data);
2711 		if (has_inline_data)
2712 			return ret;
2713 	}
2714 
2715 	sb = inode->i_sb;
2716 	if (inode->i_size < EXT4_DIR_REC_LEN(1) + EXT4_DIR_REC_LEN(2)) {
2717 		EXT4_ERROR_INODE(inode, "invalid size");
2718 		return true;
2719 	}
2720 	/* The first directory block must not be a hole,
2721 	 * so treat it as DIRENT_HTREE
2722 	 */
2723 	bh = ext4_read_dirblock(inode, 0, DIRENT_HTREE);
2724 	if (IS_ERR(bh))
2725 		return true;
2726 
2727 	de = (struct ext4_dir_entry_2 *) bh->b_data;
2728 	if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, bh->b_size,
2729 				 0) ||
2730 	    le32_to_cpu(de->inode) != inode->i_ino || strcmp(".", de->name)) {
2731 		ext4_warning_inode(inode, "directory missing '.'");
2732 		brelse(bh);
2733 		return true;
2734 	}
2735 	offset = ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2736 	de = ext4_next_entry(de, sb->s_blocksize);
2737 	if (ext4_check_dir_entry(inode, NULL, de, bh, bh->b_data, bh->b_size,
2738 				 offset) ||
2739 	    le32_to_cpu(de->inode) == 0 || strcmp("..", de->name)) {
2740 		ext4_warning_inode(inode, "directory missing '..'");
2741 		brelse(bh);
2742 		return true;
2743 	}
2744 	offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2745 	while (offset < inode->i_size) {
2746 		if (!(offset & (sb->s_blocksize - 1))) {
2747 			unsigned int lblock;
2748 			brelse(bh);
2749 			lblock = offset >> EXT4_BLOCK_SIZE_BITS(sb);
2750 			bh = ext4_read_dirblock(inode, lblock, EITHER);
2751 			if (bh == NULL) {
2752 				offset += sb->s_blocksize;
2753 				continue;
2754 			}
2755 			if (IS_ERR(bh))
2756 				return true;
2757 		}
2758 		de = (struct ext4_dir_entry_2 *) (bh->b_data +
2759 					(offset & (sb->s_blocksize - 1)));
2760 		if (ext4_check_dir_entry(inode, NULL, de, bh,
2761 					 bh->b_data, bh->b_size, offset)) {
2762 			offset = (offset | (sb->s_blocksize - 1)) + 1;
2763 			continue;
2764 		}
2765 		if (le32_to_cpu(de->inode)) {
2766 			brelse(bh);
2767 			return false;
2768 		}
2769 		offset += ext4_rec_len_from_disk(de->rec_len, sb->s_blocksize);
2770 	}
2771 	brelse(bh);
2772 	return true;
2773 }
2774 
2775 /*
2776  * ext4_orphan_add() links an unlinked or truncated inode into a list of
2777  * such inodes, starting at the superblock, in case we crash before the
2778  * file is closed/deleted, or in case the inode truncate spans multiple
2779  * transactions and the last transaction is not recovered after a crash.
2780  *
2781  * At filesystem recovery time, we walk this list deleting unlinked
2782  * inodes and truncating linked inodes in ext4_orphan_cleanup().
2783  *
2784  * Orphan list manipulation functions must be called under i_mutex unless
2785  * we are just creating the inode or deleting it.
2786  */
ext4_orphan_add(handle_t * handle,struct inode * inode)2787 int ext4_orphan_add(handle_t *handle, struct inode *inode)
2788 {
2789 	struct super_block *sb = inode->i_sb;
2790 	struct ext4_sb_info *sbi = EXT4_SB(sb);
2791 	struct ext4_iloc iloc;
2792 	int err = 0, rc;
2793 	bool dirty = false;
2794 
2795 	if (!sbi->s_journal || is_bad_inode(inode))
2796 		return 0;
2797 
2798 	WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2799 		     !inode_is_locked(inode));
2800 	/*
2801 	 * Exit early if inode already is on orphan list. This is a big speedup
2802 	 * since we don't have to contend on the global s_orphan_lock.
2803 	 */
2804 	if (!list_empty(&EXT4_I(inode)->i_orphan))
2805 		return 0;
2806 
2807 	/*
2808 	 * Orphan handling is only valid for files with data blocks
2809 	 * being truncated, or files being unlinked. Note that we either
2810 	 * hold i_mutex, or the inode can not be referenced from outside,
2811 	 * so i_nlink should not be bumped due to race
2812 	 */
2813 	J_ASSERT((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
2814 		  S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
2815 
2816 	BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2817 	err = ext4_journal_get_write_access(handle, sbi->s_sbh);
2818 	if (err)
2819 		goto out;
2820 
2821 	err = ext4_reserve_inode_write(handle, inode, &iloc);
2822 	if (err)
2823 		goto out;
2824 
2825 	mutex_lock(&sbi->s_orphan_lock);
2826 	/*
2827 	 * Due to previous errors inode may be already a part of on-disk
2828 	 * orphan list. If so skip on-disk list modification.
2829 	 */
2830 	if (!NEXT_ORPHAN(inode) || NEXT_ORPHAN(inode) >
2831 	    (le32_to_cpu(sbi->s_es->s_inodes_count))) {
2832 		/* Insert this inode at the head of the on-disk orphan list */
2833 		NEXT_ORPHAN(inode) = le32_to_cpu(sbi->s_es->s_last_orphan);
2834 		sbi->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
2835 		dirty = true;
2836 	}
2837 	list_add(&EXT4_I(inode)->i_orphan, &sbi->s_orphan);
2838 	mutex_unlock(&sbi->s_orphan_lock);
2839 
2840 	if (dirty) {
2841 		err = ext4_handle_dirty_super(handle, sb);
2842 		rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
2843 		if (!err)
2844 			err = rc;
2845 		if (err) {
2846 			/*
2847 			 * We have to remove inode from in-memory list if
2848 			 * addition to on disk orphan list failed. Stray orphan
2849 			 * list entries can cause panics at unmount time.
2850 			 */
2851 			mutex_lock(&sbi->s_orphan_lock);
2852 			list_del_init(&EXT4_I(inode)->i_orphan);
2853 			mutex_unlock(&sbi->s_orphan_lock);
2854 		}
2855 	} else
2856 		brelse(iloc.bh);
2857 
2858 	jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
2859 	jbd_debug(4, "orphan inode %lu will point to %d\n",
2860 			inode->i_ino, NEXT_ORPHAN(inode));
2861 out:
2862 	ext4_std_error(sb, err);
2863 	return err;
2864 }
2865 
2866 /*
2867  * ext4_orphan_del() removes an unlinked or truncated inode from the list
2868  * of such inodes stored on disk, because it is finally being cleaned up.
2869  */
ext4_orphan_del(handle_t * handle,struct inode * inode)2870 int ext4_orphan_del(handle_t *handle, struct inode *inode)
2871 {
2872 	struct list_head *prev;
2873 	struct ext4_inode_info *ei = EXT4_I(inode);
2874 	struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
2875 	__u32 ino_next;
2876 	struct ext4_iloc iloc;
2877 	int err = 0;
2878 
2879 	if (!sbi->s_journal && !(sbi->s_mount_state & EXT4_ORPHAN_FS))
2880 		return 0;
2881 
2882 	WARN_ON_ONCE(!(inode->i_state & (I_NEW | I_FREEING)) &&
2883 		     !inode_is_locked(inode));
2884 	/* Do this quick check before taking global s_orphan_lock. */
2885 	if (list_empty(&ei->i_orphan))
2886 		return 0;
2887 
2888 	if (handle) {
2889 		/* Grab inode buffer early before taking global s_orphan_lock */
2890 		err = ext4_reserve_inode_write(handle, inode, &iloc);
2891 	}
2892 
2893 	mutex_lock(&sbi->s_orphan_lock);
2894 	jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
2895 
2896 	prev = ei->i_orphan.prev;
2897 	list_del_init(&ei->i_orphan);
2898 
2899 	/* If we're on an error path, we may not have a valid
2900 	 * transaction handle with which to update the orphan list on
2901 	 * disk, but we still need to remove the inode from the linked
2902 	 * list in memory. */
2903 	if (!handle || err) {
2904 		mutex_unlock(&sbi->s_orphan_lock);
2905 		goto out_err;
2906 	}
2907 
2908 	ino_next = NEXT_ORPHAN(inode);
2909 	if (prev == &sbi->s_orphan) {
2910 		jbd_debug(4, "superblock will point to %u\n", ino_next);
2911 		BUFFER_TRACE(sbi->s_sbh, "get_write_access");
2912 		err = ext4_journal_get_write_access(handle, sbi->s_sbh);
2913 		if (err) {
2914 			mutex_unlock(&sbi->s_orphan_lock);
2915 			goto out_brelse;
2916 		}
2917 		sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
2918 		mutex_unlock(&sbi->s_orphan_lock);
2919 		err = ext4_handle_dirty_super(handle, inode->i_sb);
2920 	} else {
2921 		struct ext4_iloc iloc2;
2922 		struct inode *i_prev =
2923 			&list_entry(prev, struct ext4_inode_info, i_orphan)->vfs_inode;
2924 
2925 		jbd_debug(4, "orphan inode %lu will point to %u\n",
2926 			  i_prev->i_ino, ino_next);
2927 		err = ext4_reserve_inode_write(handle, i_prev, &iloc2);
2928 		if (err) {
2929 			mutex_unlock(&sbi->s_orphan_lock);
2930 			goto out_brelse;
2931 		}
2932 		NEXT_ORPHAN(i_prev) = ino_next;
2933 		err = ext4_mark_iloc_dirty(handle, i_prev, &iloc2);
2934 		mutex_unlock(&sbi->s_orphan_lock);
2935 	}
2936 	if (err)
2937 		goto out_brelse;
2938 	NEXT_ORPHAN(inode) = 0;
2939 	err = ext4_mark_iloc_dirty(handle, inode, &iloc);
2940 out_err:
2941 	ext4_std_error(inode->i_sb, err);
2942 	return err;
2943 
2944 out_brelse:
2945 	brelse(iloc.bh);
2946 	goto out_err;
2947 }
2948 
ext4_rmdir(struct inode * dir,struct dentry * dentry)2949 static int ext4_rmdir(struct inode *dir, struct dentry *dentry)
2950 {
2951 	int retval;
2952 	struct inode *inode;
2953 	struct buffer_head *bh;
2954 	struct ext4_dir_entry_2 *de;
2955 	handle_t *handle = NULL;
2956 
2957 	if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
2958 		return -EIO;
2959 
2960 	/* Initialize quotas before so that eventual writes go in
2961 	 * separate transaction */
2962 	retval = dquot_initialize(dir);
2963 	if (retval)
2964 		return retval;
2965 	retval = dquot_initialize(d_inode(dentry));
2966 	if (retval)
2967 		return retval;
2968 
2969 	retval = -ENOENT;
2970 	bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
2971 	if (IS_ERR(bh))
2972 		return PTR_ERR(bh);
2973 	if (!bh)
2974 		goto end_rmdir;
2975 
2976 	inode = d_inode(dentry);
2977 
2978 	retval = -EFSCORRUPTED;
2979 	if (le32_to_cpu(de->inode) != inode->i_ino)
2980 		goto end_rmdir;
2981 
2982 	retval = -ENOTEMPTY;
2983 	if (!ext4_empty_dir(inode))
2984 		goto end_rmdir;
2985 
2986 	handle = ext4_journal_start(dir, EXT4_HT_DIR,
2987 				    EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
2988 	if (IS_ERR(handle)) {
2989 		retval = PTR_ERR(handle);
2990 		handle = NULL;
2991 		goto end_rmdir;
2992 	}
2993 
2994 	if (IS_DIRSYNC(dir))
2995 		ext4_handle_sync(handle);
2996 
2997 	retval = ext4_delete_entry(handle, dir, de, bh);
2998 	if (retval)
2999 		goto end_rmdir;
3000 	if (!EXT4_DIR_LINK_EMPTY(inode))
3001 		ext4_warning_inode(inode,
3002 			     "empty directory '%.*s' has too many links (%u)",
3003 			     dentry->d_name.len, dentry->d_name.name,
3004 			     inode->i_nlink);
3005 	inode->i_version++;
3006 	clear_nlink(inode);
3007 	/* There's no need to set i_disksize: the fact that i_nlink is
3008 	 * zero will ensure that the right thing happens during any
3009 	 * recovery. */
3010 	inode->i_size = 0;
3011 	ext4_orphan_add(handle, inode);
3012 	inode->i_ctime = dir->i_ctime = dir->i_mtime = current_time(inode);
3013 	ext4_mark_inode_dirty(handle, inode);
3014 	ext4_dec_count(handle, dir);
3015 	ext4_update_dx_flag(dir);
3016 	ext4_mark_inode_dirty(handle, dir);
3017 
3018 end_rmdir:
3019 	brelse(bh);
3020 	if (handle)
3021 		ext4_journal_stop(handle);
3022 	return retval;
3023 }
3024 
ext4_unlink(struct inode * dir,struct dentry * dentry)3025 static int ext4_unlink(struct inode *dir, struct dentry *dentry)
3026 {
3027 	int retval;
3028 	struct inode *inode;
3029 	struct buffer_head *bh;
3030 	struct ext4_dir_entry_2 *de;
3031 	handle_t *handle = NULL;
3032 
3033 	if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
3034 		return -EIO;
3035 
3036 	trace_ext4_unlink_enter(dir, dentry);
3037 	/* Initialize quotas before so that eventual writes go
3038 	 * in separate transaction */
3039 	retval = dquot_initialize(dir);
3040 	if (retval)
3041 		return retval;
3042 	retval = dquot_initialize(d_inode(dentry));
3043 	if (retval)
3044 		return retval;
3045 
3046 	retval = -ENOENT;
3047 	bh = ext4_find_entry(dir, &dentry->d_name, &de, NULL);
3048 	if (IS_ERR(bh))
3049 		return PTR_ERR(bh);
3050 	if (!bh)
3051 		goto end_unlink;
3052 
3053 	inode = d_inode(dentry);
3054 
3055 	retval = -EFSCORRUPTED;
3056 	if (le32_to_cpu(de->inode) != inode->i_ino)
3057 		goto end_unlink;
3058 
3059 	handle = ext4_journal_start(dir, EXT4_HT_DIR,
3060 				    EXT4_DATA_TRANS_BLOCKS(dir->i_sb));
3061 	if (IS_ERR(handle)) {
3062 		retval = PTR_ERR(handle);
3063 		handle = NULL;
3064 		goto end_unlink;
3065 	}
3066 
3067 	if (IS_DIRSYNC(dir))
3068 		ext4_handle_sync(handle);
3069 
3070 	retval = ext4_delete_entry(handle, dir, de, bh);
3071 	if (retval)
3072 		goto end_unlink;
3073 	dir->i_ctime = dir->i_mtime = current_time(dir);
3074 	ext4_update_dx_flag(dir);
3075 	ext4_mark_inode_dirty(handle, dir);
3076 	if (inode->i_nlink == 0)
3077 		ext4_warning_inode(inode, "Deleting file '%.*s' with no links",
3078 				   dentry->d_name.len, dentry->d_name.name);
3079 	else
3080 		drop_nlink(inode);
3081 	if (!inode->i_nlink)
3082 		ext4_orphan_add(handle, inode);
3083 	inode->i_ctime = current_time(inode);
3084 	ext4_mark_inode_dirty(handle, inode);
3085 
3086 end_unlink:
3087 	brelse(bh);
3088 	if (handle)
3089 		ext4_journal_stop(handle);
3090 	trace_ext4_unlink_exit(dentry, retval);
3091 	return retval;
3092 }
3093 
ext4_symlink(struct inode * dir,struct dentry * dentry,const char * symname)3094 static int ext4_symlink(struct inode *dir,
3095 			struct dentry *dentry, const char *symname)
3096 {
3097 	handle_t *handle;
3098 	struct inode *inode;
3099 	int err, len = strlen(symname);
3100 	int credits;
3101 	struct fscrypt_str disk_link;
3102 
3103 	if (unlikely(ext4_forced_shutdown(EXT4_SB(dir->i_sb))))
3104 		return -EIO;
3105 
3106 	err = fscrypt_prepare_symlink(dir, symname, len, dir->i_sb->s_blocksize,
3107 				      &disk_link);
3108 	if (err)
3109 		return err;
3110 
3111 	err = dquot_initialize(dir);
3112 	if (err)
3113 		return err;
3114 
3115 	if ((disk_link.len > EXT4_N_BLOCKS * 4)) {
3116 		/*
3117 		 * For non-fast symlinks, we just allocate inode and put it on
3118 		 * orphan list in the first transaction => we need bitmap,
3119 		 * group descriptor, sb, inode block, quota blocks, and
3120 		 * possibly selinux xattr blocks.
3121 		 */
3122 		credits = 4 + EXT4_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
3123 			  EXT4_XATTR_TRANS_BLOCKS;
3124 	} else {
3125 		/*
3126 		 * Fast symlink. We have to add entry to directory
3127 		 * (EXT4_DATA_TRANS_BLOCKS + EXT4_INDEX_EXTRA_TRANS_BLOCKS),
3128 		 * allocate new inode (bitmap, group descriptor, inode block,
3129 		 * quota blocks, sb is already counted in previous macros).
3130 		 */
3131 		credits = EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
3132 			  EXT4_INDEX_EXTRA_TRANS_BLOCKS + 3;
3133 	}
3134 
3135 	inode = ext4_new_inode_start_handle(dir, S_IFLNK|S_IRWXUGO,
3136 					    &dentry->d_name, 0, NULL,
3137 					    EXT4_HT_DIR, credits);
3138 	handle = ext4_journal_current_handle();
3139 	if (IS_ERR(inode)) {
3140 		if (handle)
3141 			ext4_journal_stop(handle);
3142 		return PTR_ERR(inode);
3143 	}
3144 
3145 	if (IS_ENCRYPTED(inode)) {
3146 		err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
3147 		if (err)
3148 			goto err_drop_inode;
3149 		inode->i_op = &ext4_encrypted_symlink_inode_operations;
3150 	}
3151 
3152 	if ((disk_link.len > EXT4_N_BLOCKS * 4)) {
3153 		if (!IS_ENCRYPTED(inode))
3154 			inode->i_op = &ext4_symlink_inode_operations;
3155 		inode_nohighmem(inode);
3156 		ext4_set_aops(inode);
3157 		/*
3158 		 * We cannot call page_symlink() with transaction started
3159 		 * because it calls into ext4_write_begin() which can wait
3160 		 * for transaction commit if we are running out of space
3161 		 * and thus we deadlock. So we have to stop transaction now
3162 		 * and restart it when symlink contents is written.
3163 		 *
3164 		 * To keep fs consistent in case of crash, we have to put inode
3165 		 * to orphan list in the mean time.
3166 		 */
3167 		drop_nlink(inode);
3168 		err = ext4_orphan_add(handle, inode);
3169 		ext4_journal_stop(handle);
3170 		handle = NULL;
3171 		if (err)
3172 			goto err_drop_inode;
3173 		err = __page_symlink(inode, disk_link.name, disk_link.len, 1);
3174 		if (err)
3175 			goto err_drop_inode;
3176 		/*
3177 		 * Now inode is being linked into dir (EXT4_DATA_TRANS_BLOCKS
3178 		 * + EXT4_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
3179 		 */
3180 		handle = ext4_journal_start(dir, EXT4_HT_DIR,
3181 				EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
3182 				EXT4_INDEX_EXTRA_TRANS_BLOCKS + 1);
3183 		if (IS_ERR(handle)) {
3184 			err = PTR_ERR(handle);
3185 			handle = NULL;
3186 			goto err_drop_inode;
3187 		}
3188 		set_nlink(inode, 1);
3189 		err = ext4_orphan_del(handle, inode);
3190 		if (err)
3191 			goto err_drop_inode;
3192 	} else {
3193 		/* clear the extent format for fast symlink */
3194 		ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
3195 		if (!IS_ENCRYPTED(inode)) {
3196 			inode->i_op = &ext4_fast_symlink_inode_operations;
3197 			inode->i_link = (char *)&EXT4_I(inode)->i_data;
3198 		}
3199 		memcpy((char *)&EXT4_I(inode)->i_data, disk_link.name,
3200 		       disk_link.len);
3201 		inode->i_size = disk_link.len - 1;
3202 	}
3203 	EXT4_I(inode)->i_disksize = inode->i_size;
3204 	err = ext4_add_nondir(handle, dentry, inode);
3205 	if (!err && IS_DIRSYNC(dir))
3206 		ext4_handle_sync(handle);
3207 
3208 	if (handle)
3209 		ext4_journal_stop(handle);
3210 	goto out_free_encrypted_link;
3211 
3212 err_drop_inode:
3213 	if (handle)
3214 		ext4_journal_stop(handle);
3215 	clear_nlink(inode);
3216 	unlock_new_inode(inode);
3217 	iput(inode);
3218 out_free_encrypted_link:
3219 	if (disk_link.name != (unsigned char *)symname)
3220 		kfree(disk_link.name);
3221 	return err;
3222 }
3223 
ext4_link(struct dentry * old_dentry,struct inode * dir,struct dentry * dentry)3224 static int ext4_link(struct dentry *old_dentry,
3225 		     struct inode *dir, struct dentry *dentry)
3226 {
3227 	handle_t *handle;
3228 	struct inode *inode = d_inode(old_dentry);
3229 	int err, retries = 0;
3230 
3231 	if (inode->i_nlink >= EXT4_LINK_MAX)
3232 		return -EMLINK;
3233 	if (ext4_encrypted_inode(dir) &&
3234 			!fscrypt_has_permitted_context(dir, inode))
3235 		return -EPERM;
3236 
3237        if ((ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT)) &&
3238 	   (!projid_eq(EXT4_I(dir)->i_projid,
3239 		       EXT4_I(old_dentry->d_inode)->i_projid)))
3240 		return -EXDEV;
3241 
3242 	err = dquot_initialize(dir);
3243 	if (err)
3244 		return err;
3245 
3246 retry:
3247 	handle = ext4_journal_start(dir, EXT4_HT_DIR,
3248 		(EXT4_DATA_TRANS_BLOCKS(dir->i_sb) +
3249 		 EXT4_INDEX_EXTRA_TRANS_BLOCKS) + 1);
3250 	if (IS_ERR(handle))
3251 		return PTR_ERR(handle);
3252 
3253 	if (IS_DIRSYNC(dir))
3254 		ext4_handle_sync(handle);
3255 
3256 	inode->i_ctime = current_time(inode);
3257 	ext4_inc_count(handle, inode);
3258 	ihold(inode);
3259 
3260 	err = ext4_add_entry(handle, dentry, inode);
3261 	if (!err) {
3262 		ext4_mark_inode_dirty(handle, inode);
3263 		/* this can happen only for tmpfile being
3264 		 * linked the first time
3265 		 */
3266 		if (inode->i_nlink == 1)
3267 			ext4_orphan_del(handle, inode);
3268 		d_instantiate(dentry, inode);
3269 	} else {
3270 		drop_nlink(inode);
3271 		iput(inode);
3272 	}
3273 	ext4_journal_stop(handle);
3274 	if (err == -ENOSPC && ext4_should_retry_alloc(dir->i_sb, &retries))
3275 		goto retry;
3276 	return err;
3277 }
3278 
3279 
3280 /*
3281  * Try to find buffer head where contains the parent block.
3282  * It should be the inode block if it is inlined or the 1st block
3283  * if it is a normal dir.
3284  */
ext4_get_first_dir_block(handle_t * handle,struct inode * inode,int * retval,struct ext4_dir_entry_2 ** parent_de,int * inlined)3285 static struct buffer_head *ext4_get_first_dir_block(handle_t *handle,
3286 					struct inode *inode,
3287 					int *retval,
3288 					struct ext4_dir_entry_2 **parent_de,
3289 					int *inlined)
3290 {
3291 	struct buffer_head *bh;
3292 
3293 	if (!ext4_has_inline_data(inode)) {
3294 		/* The first directory block must not be a hole, so
3295 		 * treat it as DIRENT_HTREE
3296 		 */
3297 		bh = ext4_read_dirblock(inode, 0, DIRENT_HTREE);
3298 		if (IS_ERR(bh)) {
3299 			*retval = PTR_ERR(bh);
3300 			return NULL;
3301 		}
3302 		*parent_de = ext4_next_entry(
3303 					(struct ext4_dir_entry_2 *)bh->b_data,
3304 					inode->i_sb->s_blocksize);
3305 		return bh;
3306 	}
3307 
3308 	*inlined = 1;
3309 	return ext4_get_first_inline_block(inode, parent_de, retval);
3310 }
3311 
3312 struct ext4_renament {
3313 	struct inode *dir;
3314 	struct dentry *dentry;
3315 	struct inode *inode;
3316 	bool is_dir;
3317 	int dir_nlink_delta;
3318 
3319 	/* entry for "dentry" */
3320 	struct buffer_head *bh;
3321 	struct ext4_dir_entry_2 *de;
3322 	int inlined;
3323 
3324 	/* entry for ".." in inode if it's a directory */
3325 	struct buffer_head *dir_bh;
3326 	struct ext4_dir_entry_2 *parent_de;
3327 	int dir_inlined;
3328 };
3329 
ext4_rename_dir_prepare(handle_t * handle,struct ext4_renament * ent)3330 static int ext4_rename_dir_prepare(handle_t *handle, struct ext4_renament *ent)
3331 {
3332 	int retval;
3333 
3334 	ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode,
3335 					      &retval, &ent->parent_de,
3336 					      &ent->dir_inlined);
3337 	if (!ent->dir_bh)
3338 		return retval;
3339 	if (le32_to_cpu(ent->parent_de->inode) != ent->dir->i_ino)
3340 		return -EFSCORRUPTED;
3341 	BUFFER_TRACE(ent->dir_bh, "get_write_access");
3342 	return ext4_journal_get_write_access(handle, ent->dir_bh);
3343 }
3344 
ext4_rename_dir_finish(handle_t * handle,struct ext4_renament * ent,unsigned dir_ino)3345 static int ext4_rename_dir_finish(handle_t *handle, struct ext4_renament *ent,
3346 				  unsigned dir_ino)
3347 {
3348 	int retval;
3349 
3350 	ent->parent_de->inode = cpu_to_le32(dir_ino);
3351 	BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata");
3352 	if (!ent->dir_inlined) {
3353 		if (is_dx(ent->inode)) {
3354 			retval = ext4_handle_dirty_dx_node(handle,
3355 							   ent->inode,
3356 							   ent->dir_bh);
3357 		} else {
3358 			retval = ext4_handle_dirty_dirent_node(handle,
3359 							       ent->inode,
3360 							       ent->dir_bh);
3361 		}
3362 	} else {
3363 		retval = ext4_mark_inode_dirty(handle, ent->inode);
3364 	}
3365 	if (retval) {
3366 		ext4_std_error(ent->dir->i_sb, retval);
3367 		return retval;
3368 	}
3369 	return 0;
3370 }
3371 
ext4_setent(handle_t * handle,struct ext4_renament * ent,unsigned ino,unsigned file_type)3372 static int ext4_setent(handle_t *handle, struct ext4_renament *ent,
3373 		       unsigned ino, unsigned file_type)
3374 {
3375 	int retval;
3376 
3377 	BUFFER_TRACE(ent->bh, "get write access");
3378 	retval = ext4_journal_get_write_access(handle, ent->bh);
3379 	if (retval)
3380 		return retval;
3381 	ent->de->inode = cpu_to_le32(ino);
3382 	if (ext4_has_feature_filetype(ent->dir->i_sb))
3383 		ent->de->file_type = file_type;
3384 	ent->dir->i_version++;
3385 	ent->dir->i_ctime = ent->dir->i_mtime =
3386 		current_time(ent->dir);
3387 	ext4_mark_inode_dirty(handle, ent->dir);
3388 	BUFFER_TRACE(ent->bh, "call ext4_handle_dirty_metadata");
3389 	if (!ent->inlined) {
3390 		retval = ext4_handle_dirty_dirent_node(handle,
3391 						       ent->dir, ent->bh);
3392 		if (unlikely(retval)) {
3393 			ext4_std_error(ent->dir->i_sb, retval);
3394 			return retval;
3395 		}
3396 	}
3397 	brelse(ent->bh);
3398 	ent->bh = NULL;
3399 
3400 	return 0;
3401 }
3402 
ext4_find_delete_entry(handle_t * handle,struct inode * dir,const struct qstr * d_name)3403 static int ext4_find_delete_entry(handle_t *handle, struct inode *dir,
3404 				  const struct qstr *d_name)
3405 {
3406 	int retval = -ENOENT;
3407 	struct buffer_head *bh;
3408 	struct ext4_dir_entry_2 *de;
3409 
3410 	bh = ext4_find_entry(dir, d_name, &de, NULL);
3411 	if (IS_ERR(bh))
3412 		return PTR_ERR(bh);
3413 	if (bh) {
3414 		retval = ext4_delete_entry(handle, dir, de, bh);
3415 		brelse(bh);
3416 	}
3417 	return retval;
3418 }
3419 
ext4_rename_delete(handle_t * handle,struct ext4_renament * ent,int force_reread)3420 static void ext4_rename_delete(handle_t *handle, struct ext4_renament *ent,
3421 			       int force_reread)
3422 {
3423 	int retval;
3424 	/*
3425 	 * ent->de could have moved from under us during htree split, so make
3426 	 * sure that we are deleting the right entry.  We might also be pointing
3427 	 * to a stale entry in the unused part of ent->bh so just checking inum
3428 	 * and the name isn't enough.
3429 	 */
3430 	if (le32_to_cpu(ent->de->inode) != ent->inode->i_ino ||
3431 	    ent->de->name_len != ent->dentry->d_name.len ||
3432 	    strncmp(ent->de->name, ent->dentry->d_name.name,
3433 		    ent->de->name_len) ||
3434 	    force_reread) {
3435 		retval = ext4_find_delete_entry(handle, ent->dir,
3436 						&ent->dentry->d_name);
3437 	} else {
3438 		retval = ext4_delete_entry(handle, ent->dir, ent->de, ent->bh);
3439 		if (retval == -ENOENT) {
3440 			retval = ext4_find_delete_entry(handle, ent->dir,
3441 							&ent->dentry->d_name);
3442 		}
3443 	}
3444 
3445 	if (retval) {
3446 		ext4_warning_inode(ent->dir,
3447 				   "Deleting old file: nlink %d, error=%d",
3448 				   ent->dir->i_nlink, retval);
3449 	}
3450 }
3451 
ext4_update_dir_count(handle_t * handle,struct ext4_renament * ent)3452 static void ext4_update_dir_count(handle_t *handle, struct ext4_renament *ent)
3453 {
3454 	if (ent->dir_nlink_delta) {
3455 		if (ent->dir_nlink_delta == -1)
3456 			ext4_dec_count(handle, ent->dir);
3457 		else
3458 			ext4_inc_count(handle, ent->dir);
3459 		ext4_mark_inode_dirty(handle, ent->dir);
3460 	}
3461 }
3462 
ext4_whiteout_for_rename(struct ext4_renament * ent,int credits,handle_t ** h)3463 static struct inode *ext4_whiteout_for_rename(struct ext4_renament *ent,
3464 					      int credits, handle_t **h)
3465 {
3466 	struct inode *wh;
3467 	handle_t *handle;
3468 	int retries = 0;
3469 
3470 	/*
3471 	 * for inode block, sb block, group summaries,
3472 	 * and inode bitmap
3473 	 */
3474 	credits += (EXT4_MAXQUOTAS_TRANS_BLOCKS(ent->dir->i_sb) +
3475 		    EXT4_XATTR_TRANS_BLOCKS + 4);
3476 retry:
3477 	wh = ext4_new_inode_start_handle(ent->dir, S_IFCHR | WHITEOUT_MODE,
3478 					 &ent->dentry->d_name, 0, NULL,
3479 					 EXT4_HT_DIR, credits);
3480 
3481 	handle = ext4_journal_current_handle();
3482 	if (IS_ERR(wh)) {
3483 		if (handle)
3484 			ext4_journal_stop(handle);
3485 		if (PTR_ERR(wh) == -ENOSPC &&
3486 		    ext4_should_retry_alloc(ent->dir->i_sb, &retries))
3487 			goto retry;
3488 	} else {
3489 		*h = handle;
3490 		init_special_inode(wh, wh->i_mode, WHITEOUT_DEV);
3491 		wh->i_op = &ext4_special_inode_operations;
3492 	}
3493 	return wh;
3494 }
3495 
3496 /*
3497  * Anybody can rename anything with this: the permission checks are left to the
3498  * higher-level routines.
3499  *
3500  * n.b.  old_{dentry,inode) refers to the source dentry/inode
3501  * while new_{dentry,inode) refers to the destination dentry/inode
3502  * This comes from rename(const char *oldpath, const char *newpath)
3503  */
ext4_rename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry,unsigned int flags)3504 static int ext4_rename(struct inode *old_dir, struct dentry *old_dentry,
3505 		       struct inode *new_dir, struct dentry *new_dentry,
3506 		       unsigned int flags)
3507 {
3508 	handle_t *handle = NULL;
3509 	struct ext4_renament old = {
3510 		.dir = old_dir,
3511 		.dentry = old_dentry,
3512 		.inode = d_inode(old_dentry),
3513 	};
3514 	struct ext4_renament new = {
3515 		.dir = new_dir,
3516 		.dentry = new_dentry,
3517 		.inode = d_inode(new_dentry),
3518 	};
3519 	int force_reread;
3520 	int retval;
3521 	struct inode *whiteout = NULL;
3522 	int credits;
3523 	u8 old_file_type;
3524 
3525 	if (new.inode && new.inode->i_nlink == 0) {
3526 		EXT4_ERROR_INODE(new.inode,
3527 				 "target of rename is already freed");
3528 		return -EFSCORRUPTED;
3529 	}
3530 
3531 	if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT)) &&
3532 	    (!projid_eq(EXT4_I(new_dir)->i_projid,
3533 			EXT4_I(old_dentry->d_inode)->i_projid)))
3534 		return -EXDEV;
3535 
3536 	if ((ext4_encrypted_inode(old_dir) &&
3537 	     !fscrypt_has_encryption_key(old_dir)) ||
3538 	    (ext4_encrypted_inode(new_dir) &&
3539 	     !fscrypt_has_encryption_key(new_dir)))
3540 		return -ENOKEY;
3541 
3542 	retval = dquot_initialize(old.dir);
3543 	if (retval)
3544 		return retval;
3545 	retval = dquot_initialize(new.dir);
3546 	if (retval)
3547 		return retval;
3548 
3549 	/* Initialize quotas before so that eventual writes go
3550 	 * in separate transaction */
3551 	if (new.inode) {
3552 		retval = dquot_initialize(new.inode);
3553 		if (retval)
3554 			return retval;
3555 	}
3556 
3557 	old.bh = ext4_find_entry(old.dir, &old.dentry->d_name, &old.de, NULL);
3558 	if (IS_ERR(old.bh))
3559 		return PTR_ERR(old.bh);
3560 	/*
3561 	 *  Check for inode number is _not_ due to possible IO errors.
3562 	 *  We might rmdir the source, keep it as pwd of some process
3563 	 *  and merrily kill the link to whatever was created under the
3564 	 *  same name. Goodbye sticky bit ;-<
3565 	 */
3566 	retval = -ENOENT;
3567 	if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3568 		goto end_rename;
3569 
3570 	if ((old.dir != new.dir) &&
3571 	    ext4_encrypted_inode(new.dir) &&
3572 	    !fscrypt_has_permitted_context(new.dir, old.inode)) {
3573 		retval = -EPERM;
3574 		goto end_rename;
3575 	}
3576 
3577 	new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3578 				 &new.de, &new.inlined);
3579 	if (IS_ERR(new.bh)) {
3580 		retval = PTR_ERR(new.bh);
3581 		new.bh = NULL;
3582 		goto end_rename;
3583 	}
3584 	if (new.bh) {
3585 		if (!new.inode) {
3586 			brelse(new.bh);
3587 			new.bh = NULL;
3588 		}
3589 	}
3590 	if (new.inode && !test_opt(new.dir->i_sb, NO_AUTO_DA_ALLOC))
3591 		ext4_alloc_da_blocks(old.inode);
3592 
3593 	credits = (2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3594 		   EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2);
3595 	if (!(flags & RENAME_WHITEOUT)) {
3596 		handle = ext4_journal_start(old.dir, EXT4_HT_DIR, credits);
3597 		if (IS_ERR(handle)) {
3598 			retval = PTR_ERR(handle);
3599 			handle = NULL;
3600 			goto end_rename;
3601 		}
3602 	} else {
3603 		whiteout = ext4_whiteout_for_rename(&old, credits, &handle);
3604 		if (IS_ERR(whiteout)) {
3605 			retval = PTR_ERR(whiteout);
3606 			whiteout = NULL;
3607 			goto end_rename;
3608 		}
3609 	}
3610 
3611 	if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3612 		ext4_handle_sync(handle);
3613 
3614 	if (S_ISDIR(old.inode->i_mode)) {
3615 		if (new.inode) {
3616 			retval = -ENOTEMPTY;
3617 			if (!ext4_empty_dir(new.inode))
3618 				goto end_rename;
3619 		} else {
3620 			retval = -EMLINK;
3621 			if (new.dir != old.dir && EXT4_DIR_LINK_MAX(new.dir))
3622 				goto end_rename;
3623 		}
3624 		retval = ext4_rename_dir_prepare(handle, &old);
3625 		if (retval)
3626 			goto end_rename;
3627 	}
3628 	/*
3629 	 * If we're renaming a file within an inline_data dir and adding or
3630 	 * setting the new dirent causes a conversion from inline_data to
3631 	 * extents/blockmap, we need to force the dirent delete code to
3632 	 * re-read the directory, or else we end up trying to delete a dirent
3633 	 * from what is now the extent tree root (or a block map).
3634 	 */
3635 	force_reread = (new.dir->i_ino == old.dir->i_ino &&
3636 			ext4_test_inode_flag(new.dir, EXT4_INODE_INLINE_DATA));
3637 
3638 	old_file_type = old.de->file_type;
3639 	if (whiteout) {
3640 		/*
3641 		 * Do this before adding a new entry, so the old entry is sure
3642 		 * to be still pointing to the valid old entry.
3643 		 */
3644 		retval = ext4_setent(handle, &old, whiteout->i_ino,
3645 				     EXT4_FT_CHRDEV);
3646 		if (retval)
3647 			goto end_rename;
3648 		ext4_mark_inode_dirty(handle, whiteout);
3649 	}
3650 	if (!new.bh) {
3651 		retval = ext4_add_entry(handle, new.dentry, old.inode);
3652 		if (retval)
3653 			goto end_rename;
3654 	} else {
3655 		retval = ext4_setent(handle, &new,
3656 				     old.inode->i_ino, old_file_type);
3657 		if (retval)
3658 			goto end_rename;
3659 	}
3660 	if (force_reread)
3661 		force_reread = !ext4_test_inode_flag(new.dir,
3662 						     EXT4_INODE_INLINE_DATA);
3663 
3664 	/*
3665 	 * Like most other Unix systems, set the ctime for inodes on a
3666 	 * rename.
3667 	 */
3668 	old.inode->i_ctime = current_time(old.inode);
3669 	ext4_mark_inode_dirty(handle, old.inode);
3670 
3671 	if (!whiteout) {
3672 		/*
3673 		 * ok, that's it
3674 		 */
3675 		ext4_rename_delete(handle, &old, force_reread);
3676 	}
3677 
3678 	if (new.inode) {
3679 		ext4_dec_count(handle, new.inode);
3680 		new.inode->i_ctime = current_time(new.inode);
3681 	}
3682 	old.dir->i_ctime = old.dir->i_mtime = current_time(old.dir);
3683 	ext4_update_dx_flag(old.dir);
3684 	if (old.dir_bh) {
3685 		retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3686 		if (retval)
3687 			goto end_rename;
3688 
3689 		ext4_dec_count(handle, old.dir);
3690 		if (new.inode) {
3691 			/* checked ext4_empty_dir above, can't have another
3692 			 * parent, ext4_dec_count() won't work for many-linked
3693 			 * dirs */
3694 			clear_nlink(new.inode);
3695 		} else {
3696 			ext4_inc_count(handle, new.dir);
3697 			ext4_update_dx_flag(new.dir);
3698 			ext4_mark_inode_dirty(handle, new.dir);
3699 		}
3700 	}
3701 	ext4_mark_inode_dirty(handle, old.dir);
3702 	if (new.inode) {
3703 		ext4_mark_inode_dirty(handle, new.inode);
3704 		if (!new.inode->i_nlink)
3705 			ext4_orphan_add(handle, new.inode);
3706 	}
3707 	retval = 0;
3708 
3709 end_rename:
3710 	brelse(old.dir_bh);
3711 	brelse(old.bh);
3712 	brelse(new.bh);
3713 	if (whiteout) {
3714 		if (retval)
3715 			drop_nlink(whiteout);
3716 		unlock_new_inode(whiteout);
3717 		iput(whiteout);
3718 	}
3719 	if (handle)
3720 		ext4_journal_stop(handle);
3721 	return retval;
3722 }
3723 
ext4_cross_rename(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry)3724 static int ext4_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
3725 			     struct inode *new_dir, struct dentry *new_dentry)
3726 {
3727 	handle_t *handle = NULL;
3728 	struct ext4_renament old = {
3729 		.dir = old_dir,
3730 		.dentry = old_dentry,
3731 		.inode = d_inode(old_dentry),
3732 	};
3733 	struct ext4_renament new = {
3734 		.dir = new_dir,
3735 		.dentry = new_dentry,
3736 		.inode = d_inode(new_dentry),
3737 	};
3738 	u8 new_file_type;
3739 	int retval;
3740 	struct timespec ctime;
3741 
3742 	if ((ext4_encrypted_inode(old_dir) &&
3743 	     !fscrypt_has_encryption_key(old_dir)) ||
3744 	    (ext4_encrypted_inode(new_dir) &&
3745 	     !fscrypt_has_encryption_key(new_dir)))
3746 		return -ENOKEY;
3747 
3748 	if ((ext4_encrypted_inode(old_dir) ||
3749 	     ext4_encrypted_inode(new_dir)) &&
3750 	    (old_dir != new_dir) &&
3751 	    (!fscrypt_has_permitted_context(new_dir, old.inode) ||
3752 	     !fscrypt_has_permitted_context(old_dir, new.inode)))
3753 		return -EPERM;
3754 
3755 	if ((ext4_test_inode_flag(new_dir, EXT4_INODE_PROJINHERIT) &&
3756 	     !projid_eq(EXT4_I(new_dir)->i_projid,
3757 			EXT4_I(old_dentry->d_inode)->i_projid)) ||
3758 	    (ext4_test_inode_flag(old_dir, EXT4_INODE_PROJINHERIT) &&
3759 	     !projid_eq(EXT4_I(old_dir)->i_projid,
3760 			EXT4_I(new_dentry->d_inode)->i_projid)))
3761 		return -EXDEV;
3762 
3763 	retval = dquot_initialize(old.dir);
3764 	if (retval)
3765 		return retval;
3766 	retval = dquot_initialize(new.dir);
3767 	if (retval)
3768 		return retval;
3769 
3770 	old.bh = ext4_find_entry(old.dir, &old.dentry->d_name,
3771 				 &old.de, &old.inlined);
3772 	if (IS_ERR(old.bh))
3773 		return PTR_ERR(old.bh);
3774 	/*
3775 	 *  Check for inode number is _not_ due to possible IO errors.
3776 	 *  We might rmdir the source, keep it as pwd of some process
3777 	 *  and merrily kill the link to whatever was created under the
3778 	 *  same name. Goodbye sticky bit ;-<
3779 	 */
3780 	retval = -ENOENT;
3781 	if (!old.bh || le32_to_cpu(old.de->inode) != old.inode->i_ino)
3782 		goto end_rename;
3783 
3784 	new.bh = ext4_find_entry(new.dir, &new.dentry->d_name,
3785 				 &new.de, &new.inlined);
3786 	if (IS_ERR(new.bh)) {
3787 		retval = PTR_ERR(new.bh);
3788 		new.bh = NULL;
3789 		goto end_rename;
3790 	}
3791 
3792 	/* RENAME_EXCHANGE case: old *and* new must both exist */
3793 	if (!new.bh || le32_to_cpu(new.de->inode) != new.inode->i_ino)
3794 		goto end_rename;
3795 
3796 	handle = ext4_journal_start(old.dir, EXT4_HT_DIR,
3797 		(2 * EXT4_DATA_TRANS_BLOCKS(old.dir->i_sb) +
3798 		 2 * EXT4_INDEX_EXTRA_TRANS_BLOCKS + 2));
3799 	if (IS_ERR(handle)) {
3800 		retval = PTR_ERR(handle);
3801 		handle = NULL;
3802 		goto end_rename;
3803 	}
3804 
3805 	if (IS_DIRSYNC(old.dir) || IS_DIRSYNC(new.dir))
3806 		ext4_handle_sync(handle);
3807 
3808 	if (S_ISDIR(old.inode->i_mode)) {
3809 		old.is_dir = true;
3810 		retval = ext4_rename_dir_prepare(handle, &old);
3811 		if (retval)
3812 			goto end_rename;
3813 	}
3814 	if (S_ISDIR(new.inode->i_mode)) {
3815 		new.is_dir = true;
3816 		retval = ext4_rename_dir_prepare(handle, &new);
3817 		if (retval)
3818 			goto end_rename;
3819 	}
3820 
3821 	/*
3822 	 * Other than the special case of overwriting a directory, parents'
3823 	 * nlink only needs to be modified if this is a cross directory rename.
3824 	 */
3825 	if (old.dir != new.dir && old.is_dir != new.is_dir) {
3826 		old.dir_nlink_delta = old.is_dir ? -1 : 1;
3827 		new.dir_nlink_delta = -old.dir_nlink_delta;
3828 		retval = -EMLINK;
3829 		if ((old.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(old.dir)) ||
3830 		    (new.dir_nlink_delta > 0 && EXT4_DIR_LINK_MAX(new.dir)))
3831 			goto end_rename;
3832 	}
3833 
3834 	new_file_type = new.de->file_type;
3835 	retval = ext4_setent(handle, &new, old.inode->i_ino, old.de->file_type);
3836 	if (retval)
3837 		goto end_rename;
3838 
3839 	retval = ext4_setent(handle, &old, new.inode->i_ino, new_file_type);
3840 	if (retval)
3841 		goto end_rename;
3842 
3843 	/*
3844 	 * Like most other Unix systems, set the ctime for inodes on a
3845 	 * rename.
3846 	 */
3847 	ctime = current_time(old.inode);
3848 	old.inode->i_ctime = ctime;
3849 	new.inode->i_ctime = ctime;
3850 	ext4_mark_inode_dirty(handle, old.inode);
3851 	ext4_mark_inode_dirty(handle, new.inode);
3852 
3853 	if (old.dir_bh) {
3854 		retval = ext4_rename_dir_finish(handle, &old, new.dir->i_ino);
3855 		if (retval)
3856 			goto end_rename;
3857 	}
3858 	if (new.dir_bh) {
3859 		retval = ext4_rename_dir_finish(handle, &new, old.dir->i_ino);
3860 		if (retval)
3861 			goto end_rename;
3862 	}
3863 	ext4_update_dir_count(handle, &old);
3864 	ext4_update_dir_count(handle, &new);
3865 	retval = 0;
3866 
3867 end_rename:
3868 	brelse(old.dir_bh);
3869 	brelse(new.dir_bh);
3870 	brelse(old.bh);
3871 	brelse(new.bh);
3872 	if (handle)
3873 		ext4_journal_stop(handle);
3874 	return retval;
3875 }
3876 
ext4_rename2(struct inode * old_dir,struct dentry * old_dentry,struct inode * new_dir,struct dentry * new_dentry,unsigned int flags)3877 static int ext4_rename2(struct inode *old_dir, struct dentry *old_dentry,
3878 			struct inode *new_dir, struct dentry *new_dentry,
3879 			unsigned int flags)
3880 {
3881 	if (unlikely(ext4_forced_shutdown(EXT4_SB(old_dir->i_sb))))
3882 		return -EIO;
3883 
3884 	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
3885 		return -EINVAL;
3886 
3887 	if (flags & RENAME_EXCHANGE) {
3888 		return ext4_cross_rename(old_dir, old_dentry,
3889 					 new_dir, new_dentry);
3890 	}
3891 
3892 	return ext4_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
3893 }
3894 
3895 /*
3896  * directories can handle most operations...
3897  */
3898 const struct inode_operations ext4_dir_inode_operations = {
3899 	.create		= ext4_create,
3900 	.lookup		= ext4_lookup,
3901 	.link		= ext4_link,
3902 	.unlink		= ext4_unlink,
3903 	.symlink	= ext4_symlink,
3904 	.mkdir		= ext4_mkdir,
3905 	.rmdir		= ext4_rmdir,
3906 	.mknod		= ext4_mknod,
3907 	.tmpfile	= ext4_tmpfile,
3908 	.rename		= ext4_rename2,
3909 	.setattr	= ext4_setattr,
3910 	.getattr	= ext4_getattr,
3911 	.listxattr	= ext4_listxattr,
3912 	.get_acl	= ext4_get_acl,
3913 	.set_acl	= ext4_set_acl,
3914 	.fiemap         = ext4_fiemap,
3915 };
3916 
3917 const struct inode_operations ext4_special_inode_operations = {
3918 	.setattr	= ext4_setattr,
3919 	.getattr	= ext4_getattr,
3920 	.listxattr	= ext4_listxattr,
3921 	.get_acl	= ext4_get_acl,
3922 	.set_acl	= ext4_set_acl,
3923 };
3924