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