inode.c 11.6 KB
Newer Older
J
Jaegeuk Kim 已提交
1
/*
J
Jaegeuk Kim 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * fs/f2fs/inode.c
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/fs.h>
#include <linux/f2fs_fs.h>
#include <linux/buffer_head.h>
#include <linux/writeback.h>

#include "f2fs.h"
#include "node.h"

19 20
#include <trace/events/f2fs.h>

J
Jaegeuk Kim 已提交
21 22 23
void f2fs_set_inode_flags(struct inode *inode)
{
	unsigned int flags = F2FS_I(inode)->i_flags;
24
	unsigned int new_fl = 0;
J
Jaegeuk Kim 已提交
25 26

	if (flags & FS_SYNC_FL)
27
		new_fl |= S_SYNC;
J
Jaegeuk Kim 已提交
28
	if (flags & FS_APPEND_FL)
29
		new_fl |= S_APPEND;
J
Jaegeuk Kim 已提交
30
	if (flags & FS_IMMUTABLE_FL)
31
		new_fl |= S_IMMUTABLE;
J
Jaegeuk Kim 已提交
32
	if (flags & FS_NOATIME_FL)
33
		new_fl |= S_NOATIME;
J
Jaegeuk Kim 已提交
34
	if (flags & FS_DIRSYNC_FL)
35
		new_fl |= S_DIRSYNC;
Z
Zhang Zhen 已提交
36 37
	inode_set_flags(inode, new_fl,
			S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
J
Jaegeuk Kim 已提交
38 39
}

40 41 42 43 44
static void __get_inode_rdev(struct inode *inode, struct f2fs_inode *ri)
{
	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
			S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
		if (ri->i_addr[0])
C
Chris Fries 已提交
45 46
			inode->i_rdev =
				old_decode_dev(le32_to_cpu(ri->i_addr[0]));
47
		else
C
Chris Fries 已提交
48 49
			inode->i_rdev =
				new_decode_dev(le32_to_cpu(ri->i_addr[1]));
50 51 52
	}
}

53 54
static bool __written_first_block(struct f2fs_inode *ri)
{
J
Jaegeuk Kim 已提交
55 56 57
	block_t addr = le32_to_cpu(ri->i_addr[0]);

	if (addr != NEW_ADDR && addr != NULL_ADDR)
58 59 60 61
		return true;
	return false;
}

62 63 64 65
static void __set_inode_rdev(struct inode *inode, struct f2fs_inode *ri)
{
	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
		if (old_valid_dev(inode->i_rdev)) {
C
Chris Fries 已提交
66 67
			ri->i_addr[0] =
				cpu_to_le32(old_encode_dev(inode->i_rdev));
68 69 70
			ri->i_addr[1] = 0;
		} else {
			ri->i_addr[0] = 0;
C
Chris Fries 已提交
71 72
			ri->i_addr[1] =
				cpu_to_le32(new_encode_dev(inode->i_rdev));
73 74 75 76 77
			ri->i_addr[2] = 0;
		}
	}
}

78
static void __recover_inline_status(struct inode *inode, struct page *ipage)
79 80
{
	void *inline_data = inline_data_addr(ipage);
81 82
	__le32 *start = inline_data;
	__le32 *end = start + MAX_INLINE_DATA / sizeof(__le32);
83

84 85
	while (start < end) {
		if (*start++) {
86
			f2fs_wait_on_page_writeback(ipage, NODE, true);
87

88 89 90 91 92
			set_inode_flag(F2FS_I(inode), FI_DATA_EXIST);
			set_raw_inline(F2FS_I(inode), F2FS_INODE(ipage));
			set_page_dirty(ipage);
			return;
		}
93
	}
94
	return;
95 96
}

J
Jaegeuk Kim 已提交
97 98
static int do_read_inode(struct inode *inode)
{
99
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
J
Jaegeuk Kim 已提交
100 101 102 103 104
	struct f2fs_inode_info *fi = F2FS_I(inode);
	struct page *node_page;
	struct f2fs_inode *ri;

	/* Check if ino is within scope */
105 106 107
	if (check_nid_range(sbi, inode->i_ino)) {
		f2fs_msg(inode->i_sb, KERN_ERR, "bad inode number: %lu",
			 (unsigned long) inode->i_ino);
108
		WARN_ON(1);
109 110
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
111 112 113 114 115

	node_page = get_node_page(sbi, inode->i_ino);
	if (IS_ERR(node_page))
		return PTR_ERR(node_page);

116
	ri = F2FS_INODE(node_page);
J
Jaegeuk Kim 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

	inode->i_mode = le16_to_cpu(ri->i_mode);
	i_uid_write(inode, le32_to_cpu(ri->i_uid));
	i_gid_write(inode, le32_to_cpu(ri->i_gid));
	set_nlink(inode, le32_to_cpu(ri->i_links));
	inode->i_size = le64_to_cpu(ri->i_size);
	inode->i_blocks = le64_to_cpu(ri->i_blocks);

	inode->i_atime.tv_sec = le64_to_cpu(ri->i_atime);
	inode->i_ctime.tv_sec = le64_to_cpu(ri->i_ctime);
	inode->i_mtime.tv_sec = le64_to_cpu(ri->i_mtime);
	inode->i_atime.tv_nsec = le32_to_cpu(ri->i_atime_nsec);
	inode->i_ctime.tv_nsec = le32_to_cpu(ri->i_ctime_nsec);
	inode->i_mtime.tv_nsec = le32_to_cpu(ri->i_mtime_nsec);
	inode->i_generation = le32_to_cpu(ri->i_generation);

	fi->i_current_depth = le32_to_cpu(ri->i_current_depth);
	fi->i_xattr_nid = le32_to_cpu(ri->i_xattr_nid);
	fi->i_flags = le32_to_cpu(ri->i_flags);
	fi->flags = 0;
	fi->i_advise = ri->i_advise;
138
	fi->i_pino = le32_to_cpu(ri->i_pino);
139
	fi->i_dir_level = ri->i_dir_level;
140

141 142
	if (f2fs_init_extent_tree(inode, &ri->i_ext))
		set_page_dirty(node_page);
143

J
Jaegeuk Kim 已提交
144
	get_inline_info(fi, ri);
145

146 147
	/* check data exist */
	if (f2fs_has_inline_data(inode) && !f2fs_exist_data(inode))
148
		__recover_inline_status(inode, node_page);
149

150 151 152
	/* get rdev by using inline_info */
	__get_inode_rdev(inode, ri);

153 154 155
	if (__written_first_block(ri))
		set_inode_flag(F2FS_I(inode), FI_FIRST_BLOCK_WRITTEN);

J
Jaegeuk Kim 已提交
156
	f2fs_put_page(node_page, 1);
157

C
Chao Yu 已提交
158
	stat_inc_inline_xattr(inode);
159 160 161
	stat_inc_inline_inode(inode);
	stat_inc_inline_dir(inode);

162
	return 0;
J
Jaegeuk Kim 已提交
163 164 165 166 167 168
}

struct inode *f2fs_iget(struct super_block *sb, unsigned long ino)
{
	struct f2fs_sb_info *sbi = F2FS_SB(sb);
	struct inode *inode;
169
	int ret = 0;
J
Jaegeuk Kim 已提交
170 171 172 173

	inode = iget_locked(sb, ino);
	if (!inode)
		return ERR_PTR(-ENOMEM);
174 175 176

	if (!(inode->i_state & I_NEW)) {
		trace_f2fs_iget(inode);
J
Jaegeuk Kim 已提交
177
		return inode;
178
	}
J
Jaegeuk Kim 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	if (ino == F2FS_NODE_INO(sbi) || ino == F2FS_META_INO(sbi))
		goto make_now;

	ret = do_read_inode(inode);
	if (ret)
		goto bad_inode;
make_now:
	if (ino == F2FS_NODE_INO(sbi)) {
		inode->i_mapping->a_ops = &f2fs_node_aops;
		mapping_set_gfp_mask(inode->i_mapping, GFP_F2FS_ZERO);
	} else if (ino == F2FS_META_INO(sbi)) {
		inode->i_mapping->a_ops = &f2fs_meta_aops;
		mapping_set_gfp_mask(inode->i_mapping, GFP_F2FS_ZERO);
	} else if (S_ISREG(inode->i_mode)) {
		inode->i_op = &f2fs_file_inode_operations;
		inode->i_fop = &f2fs_file_operations;
		inode->i_mapping->a_ops = &f2fs_dblock_aops;
	} else if (S_ISDIR(inode->i_mode)) {
		inode->i_op = &f2fs_dir_inode_operations;
		inode->i_fop = &f2fs_dir_operations;
		inode->i_mapping->a_ops = &f2fs_dblock_aops;
200
		mapping_set_gfp_mask(inode->i_mapping, GFP_F2FS_HIGH_ZERO);
J
Jaegeuk Kim 已提交
201
	} else if (S_ISLNK(inode->i_mode)) {
202 203 204 205
		if (f2fs_encrypted_inode(inode))
			inode->i_op = &f2fs_encrypted_symlink_inode_operations;
		else
			inode->i_op = &f2fs_symlink_inode_operations;
206
		inode_nohighmem(inode);
J
Jaegeuk Kim 已提交
207 208 209 210 211 212 213 214 215 216
		inode->i_mapping->a_ops = &f2fs_dblock_aops;
	} else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
			S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
		inode->i_op = &f2fs_special_inode_operations;
		init_special_inode(inode, inode->i_mode, inode->i_rdev);
	} else {
		ret = -EIO;
		goto bad_inode;
	}
	unlock_new_inode(inode);
217
	trace_f2fs_iget(inode);
J
Jaegeuk Kim 已提交
218 219 220 221
	return inode;

bad_inode:
	iget_failed(inode);
222
	trace_f2fs_iget_exit(inode, ret);
J
Jaegeuk Kim 已提交
223 224 225
	return ERR_PTR(ret);
}

226
int update_inode(struct inode *inode, struct page *node_page)
J
Jaegeuk Kim 已提交
227 228 229
{
	struct f2fs_inode *ri;

230
	f2fs_wait_on_page_writeback(node_page, NODE, true);
J
Jaegeuk Kim 已提交
231

232
	ri = F2FS_INODE(node_page);
J
Jaegeuk Kim 已提交
233 234 235 236 237 238 239 240

	ri->i_mode = cpu_to_le16(inode->i_mode);
	ri->i_advise = F2FS_I(inode)->i_advise;
	ri->i_uid = cpu_to_le32(i_uid_read(inode));
	ri->i_gid = cpu_to_le32(i_gid_read(inode));
	ri->i_links = cpu_to_le32(inode->i_nlink);
	ri->i_size = cpu_to_le64(i_size_read(inode));
	ri->i_blocks = cpu_to_le64(inode->i_blocks);
241

J
Jaegeuk Kim 已提交
242 243 244 245 246
	if (F2FS_I(inode)->extent_tree)
		set_raw_extent(&F2FS_I(inode)->extent_tree->largest,
							&ri->i_ext);
	else
		memset(&ri->i_ext, 0, sizeof(ri->i_ext));
J
Jaegeuk Kim 已提交
247
	set_raw_inline(F2FS_I(inode), ri);
J
Jaegeuk Kim 已提交
248 249 250 251 252 253 254 255 256 257

	ri->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
	ri->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
	ri->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
	ri->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
	ri->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
	ri->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
	ri->i_current_depth = cpu_to_le32(F2FS_I(inode)->i_current_depth);
	ri->i_xattr_nid = cpu_to_le32(F2FS_I(inode)->i_xattr_nid);
	ri->i_flags = cpu_to_le32(F2FS_I(inode)->i_flags);
258
	ri->i_pino = cpu_to_le32(F2FS_I(inode)->i_pino);
J
Jaegeuk Kim 已提交
259
	ri->i_generation = cpu_to_le32(inode->i_generation);
260
	ri->i_dir_level = F2FS_I(inode)->i_dir_level;
261

262
	__set_inode_rdev(inode, ri);
263
	set_cold_node(inode, node_page);
264
	clear_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
265

266 267 268 269
	/* deleted inode */
	if (inode->i_nlink == 0)
		clear_inline_node(node_page);

270
	return set_page_dirty(node_page);
J
Jaegeuk Kim 已提交
271 272
}

273
int update_inode_page(struct inode *inode)
J
Jaegeuk Kim 已提交
274
{
275
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
J
Jaegeuk Kim 已提交
276
	struct page *node_page;
277
	int ret = 0;
278
retry:
J
Jaegeuk Kim 已提交
279
	node_page = get_node_page(sbi, inode->i_ino);
280 281 282 283 284 285 286 287
	if (IS_ERR(node_page)) {
		int err = PTR_ERR(node_page);
		if (err == -ENOMEM) {
			cond_resched();
			goto retry;
		} else if (err != -ENOENT) {
			f2fs_stop_checkpoint(sbi);
		}
288
		return 0;
289
	}
290
	ret = update_inode(inode, node_page);
J
Jaegeuk Kim 已提交
291
	f2fs_put_page(node_page, 1);
292
	return ret;
J
Jaegeuk Kim 已提交
293 294
}

295 296
int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc)
{
297
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
298 299 300 301 302

	if (inode->i_ino == F2FS_NODE_INO(sbi) ||
			inode->i_ino == F2FS_META_INO(sbi))
		return 0;

303 304 305
	if (!is_inode_flag_set(F2FS_I(inode), FI_DIRTY_INODE))
		return 0;

306
	/*
307
	 * We need to balance fs here to prevent from producing dirty node pages
308 309
	 * during the urgent cleaning time when runing out of free sections.
	 */
310
	if (update_inode_page(inode))
J
Jaegeuk Kim 已提交
311
		f2fs_balance_fs(sbi, true);
312
	return 0;
313 314
}

J
Jaegeuk Kim 已提交
315
/*
J
Jaegeuk Kim 已提交
316 317 318 319
 * Called at the last iput() if i_nlink is zero
 */
void f2fs_evict_inode(struct inode *inode)
{
320
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
321 322
	struct f2fs_inode_info *fi = F2FS_I(inode);
	nid_t xnid = fi->i_xattr_nid;
C
Chao Yu 已提交
323
	int err = 0;
J
Jaegeuk Kim 已提交
324

J
Jaegeuk Kim 已提交
325
	/* some remained atomic pages should discarded */
326
	if (f2fs_is_atomic_file(inode))
327
		drop_inmem_pages(inode);
J
Jaegeuk Kim 已提交
328

329
	trace_f2fs_evict_inode(inode);
330
	truncate_inode_pages_final(&inode->i_data);
J
Jaegeuk Kim 已提交
331 332 333

	if (inode->i_ino == F2FS_NODE_INO(sbi) ||
			inode->i_ino == F2FS_META_INO(sbi))
334
		goto out_clear;
J
Jaegeuk Kim 已提交
335

336
	f2fs_bug_on(sbi, get_dirty_pages(inode));
337
	remove_dirty_inode(inode);
J
Jaegeuk Kim 已提交
338

J
Jaegeuk Kim 已提交
339 340
	f2fs_destroy_extent_tree(inode);

J
Jaegeuk Kim 已提交
341 342 343
	if (inode->i_nlink || is_bad_inode(inode))
		goto no_delete;

344
	sb_start_intwrite(inode->i_sb);
345
	set_inode_flag(fi, FI_NO_ALLOC);
J
Jaegeuk Kim 已提交
346 347 348
	i_size_write(inode, 0);

	if (F2FS_HAS_BLOCKS(inode))
C
Chao Yu 已提交
349
		err = f2fs_truncate(inode, true);
J
Jaegeuk Kim 已提交
350

C
Chao Yu 已提交
351 352 353 354 355
	if (!err) {
		f2fs_lock_op(sbi);
		err = remove_inode_page(inode);
		f2fs_unlock_op(sbi);
	}
356

357
	sb_end_intwrite(inode->i_sb);
J
Jaegeuk Kim 已提交
358
no_delete:
C
Chao Yu 已提交
359
	stat_dec_inline_xattr(inode);
360
	stat_dec_inline_dir(inode);
361
	stat_dec_inline_inode(inode);
362

363
	invalidate_mapping_pages(NODE_MAPPING(sbi), inode->i_ino, inode->i_ino);
364 365
	if (xnid)
		invalidate_mapping_pages(NODE_MAPPING(sbi), xnid, xnid);
366
	if (is_inode_flag_set(fi, FI_APPEND_WRITE))
367
		add_ino_entry(sbi, inode->i_ino, APPEND_INO);
368
	if (is_inode_flag_set(fi, FI_UPDATE_WRITE))
369
		add_ino_entry(sbi, inode->i_ino, UPDATE_INO);
370
	if (is_inode_flag_set(fi, FI_FREE_NID)) {
C
Chao Yu 已提交
371 372 373 374
		if (err && err != -ENOENT)
			alloc_nid_done(sbi, inode->i_ino);
		else
			alloc_nid_failed(sbi, inode->i_ino);
375 376
		clear_inode_flag(fi, FI_FREE_NID);
	}
C
Chao Yu 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389 390

	if (err && err != -ENOENT) {
		if (!exist_written_data(sbi, inode->i_ino, ORPHAN_INO)) {
			/*
			 * get here because we failed to release resource
			 * of inode previously, reminder our user to run fsck
			 * for fixing.
			 */
			set_sbi_flag(sbi, SBI_NEED_FSCK);
			f2fs_msg(sbi->sb, KERN_WARNING,
				"inode (ino:%lu) resource leak, run fsck "
				"to fix this issue!", inode->i_ino);
		}
	}
391
out_clear:
392
	fscrypt_put_encryption_info(inode, NULL);
393
	clear_inode(inode);
J
Jaegeuk Kim 已提交
394
}
395 396 397 398 399

/* caller should call f2fs_lock_op() */
void handle_failed_inode(struct inode *inode)
{
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
C
Chao Yu 已提交
400
	int err = 0;
401 402 403 404 405 406 407

	clear_nlink(inode);
	make_bad_inode(inode);
	unlock_new_inode(inode);

	i_size_write(inode, 0);
	if (F2FS_HAS_BLOCKS(inode))
C
Chao Yu 已提交
408 409 410 411
		err = f2fs_truncate(inode, false);

	if (!err)
		err = remove_inode_page(inode);
412

C
Chao Yu 已提交
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
	/*
	 * if we skip truncate_node in remove_inode_page bacause we failed
	 * before, it's better to find another way to release resource of
	 * this inode (e.g. valid block count, node block or nid). Here we
	 * choose to add this inode to orphan list, so that we can call iput
	 * for releasing in orphan recovery flow.
	 *
	 * Note: we should add inode to orphan list before f2fs_unlock_op()
	 * so we can prevent losing this orphan when encoutering checkpoint
	 * and following suddenly power-off.
	 */
	if (err && err != -ENOENT) {
		err = acquire_orphan_inode(sbi);
		if (!err)
			add_orphan_inode(sbi, inode->i_ino);
	}
429

430
	set_inode_flag(F2FS_I(inode), FI_FREE_NID);
431 432 433 434 435
	f2fs_unlock_op(sbi);

	/* iput will drop the inode object */
	iput(inode);
}