namei.c 28.5 KB
Newer Older
J
Jaegeuk Kim 已提交
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15
 * fs/f2fs/namei.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/pagemap.h>
#include <linux/sched.h>
#include <linux/ctype.h>
C
Chao Yu 已提交
16
#include <linux/dcache.h>
17
#include <linux/namei.h>
C
Chao Yu 已提交
18
#include <linux/quotaops.h>
19 20

#include "f2fs.h"
21
#include "node.h"
22 23
#include "xattr.h"
#include "acl.h"
24
#include <trace/events/f2fs.h>
25 26 27

static struct inode *f2fs_new_inode(struct inode *dir, umode_t mode)
{
28
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
29 30 31
	nid_t ino;
	struct inode *inode;
	bool nid_free = false;
C
Chao Yu 已提交
32
	int xattr_size = 0;
33
	int err;
34

35
	inode = new_inode(dir->i_sb);
36 37 38
	if (!inode)
		return ERR_PTR(-ENOMEM);

39
	f2fs_lock_op(sbi);
C
Chao Yu 已提交
40
	if (!f2fs_alloc_nid(sbi, &ino)) {
41
		f2fs_unlock_op(sbi);
42 43 44
		err = -ENOSPC;
		goto fail;
	}
45
	f2fs_unlock_op(sbi);
46

C
Chao Yu 已提交
47 48
	nid_free = true;

49
	inode_init_owner(inode, dir, mode);
50 51 52

	inode->i_ino = ino;
	inode->i_blocks = 0;
53
	inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
54
	F2FS_I(inode)->i_crtime = inode->i_mtime;
55 56
	inode->i_generation = sbi->s_next_generation++;

57 58 59
	if (S_ISDIR(inode->i_mode))
		F2FS_I(inode)->i_current_depth = 1;

60 61 62
	err = insert_inode_locked(inode);
	if (err) {
		err = -EINVAL;
63
		goto fail;
64
	}
C
Chao Yu 已提交
65

C
Chao Yu 已提交
66
	if (f2fs_sb_has_project_quota(sbi->sb) &&
67
		(F2FS_I(dir)->i_flags & F2FS_PROJINHERIT_FL))
C
Chao Yu 已提交
68 69 70 71 72
		F2FS_I(inode)->i_projid = F2FS_I(dir)->i_projid;
	else
		F2FS_I(inode)->i_projid = make_kprojid(&init_user_ns,
							F2FS_DEF_PROJID);

C
Chao Yu 已提交
73 74 75 76 77 78 79 80
	err = dquot_initialize(inode);
	if (err)
		goto fail_drop;

	err = dquot_alloc_inode(inode);
	if (err)
		goto fail_drop;

81 82
	set_inode_flag(inode, FI_NEW_INODE);

83
	/* If the directory encrypted, then we should encrypt the inode. */
84 85
	if ((f2fs_encrypted_inode(dir) || DUMMY_ENCRYPTION_ENABLED(sbi)) &&
				f2fs_may_encrypt(inode))
86 87
		f2fs_set_encrypted_inode(inode);

88 89 90 91 92
	if (f2fs_sb_has_extra_attr(sbi->sb)) {
		set_inode_flag(inode, FI_EXTRA_ATTR);
		F2FS_I(inode)->i_extra_isize = F2FS_TOTAL_EXTRA_ATTR_SIZE;
	}

93 94
	if (test_opt(sbi, INLINE_XATTR))
		set_inode_flag(inode, FI_INLINE_XATTR);
C
Chao Yu 已提交
95

96
	if (test_opt(sbi, INLINE_DATA) && f2fs_may_inline_data(inode))
97
		set_inode_flag(inode, FI_INLINE_DATA);
98
	if (f2fs_may_inline_dentry(inode))
99
		set_inode_flag(inode, FI_INLINE_DENTRY);
C
Chao Yu 已提交
100

C
Chao Yu 已提交
101 102 103
	if (f2fs_sb_has_flexible_inline_xattr(sbi->sb)) {
		f2fs_bug_on(sbi, !f2fs_has_extra_attr(inode));
		if (f2fs_has_inline_xattr(inode))
104
			xattr_size = F2FS_OPTION(sbi).inline_xattr_size;
C
Chao Yu 已提交
105 106 107 108 109 110 111
		/* Otherwise, will be 0 */
	} else if (f2fs_has_inline_xattr(inode) ||
				f2fs_has_inline_dentry(inode)) {
		xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
	}
	F2FS_I(inode)->i_inline_xattr_size = xattr_size;

J
Jaegeuk Kim 已提交
112 113
	f2fs_init_extent_tree(inode, NULL);

C
Chao Yu 已提交
114
	stat_inc_inline_xattr(inode);
115 116 117
	stat_inc_inline_inode(inode);
	stat_inc_inline_dir(inode);

C
Chao Yu 已提交
118 119 120
	F2FS_I(inode)->i_flags =
		f2fs_mask_flags(mode, F2FS_I(dir)->i_flags & F2FS_FL_INHERITED);

C
Chao Yu 已提交
121
	if (S_ISDIR(inode->i_mode))
122
		F2FS_I(inode)->i_flags |= F2FS_INDEX_FL;
C
Chao Yu 已提交
123

124
	if (F2FS_I(inode)->i_flags & F2FS_PROJINHERIT_FL)
C
Chao Yu 已提交
125 126
		set_inode_flag(inode, FI_PROJ_INHERIT);

127
	trace_f2fs_new_inode(inode, 0);
128 129 130
	return inode;

fail:
131
	trace_f2fs_new_inode(inode, err);
132
	make_bad_inode(inode);
133
	if (nid_free)
134
		set_inode_flag(inode, FI_FREE_NID);
135
	iput(inode);
136
	return ERR_PTR(err);
C
Chao Yu 已提交
137 138 139 140 141 142 143 144 145 146
fail_drop:
	trace_f2fs_new_inode(inode, err);
	dquot_drop(inode);
	inode->i_flags |= S_NOQUOTA;
	if (nid_free)
		set_inode_flag(inode, FI_FREE_NID);
	clear_nlink(inode);
	unlock_new_inode(inode);
	iput(inode);
	return ERR_PTR(err);
147 148
}

C
Chao Yu 已提交
149
static int is_extension_exist(const unsigned char *s, const char *sub)
150
{
151 152
	size_t slen = strlen(s);
	size_t sublen = strlen(sub);
153
	int i;
154

C
Chao Yu 已提交
155 156
	/*
	 * filename format of multimedia file should be defined as:
157
	 * "filename + '.' + extension + (optional: '.' + temp extension)".
C
Chao Yu 已提交
158 159 160 161
	 */
	if (slen < sublen + 2)
		return 0;

162 163 164 165 166 167
	for (i = 1; i < slen - sublen; i++) {
		if (s[i] != '.')
			continue;
		if (!strncasecmp(s + i + 1, sub, sublen))
			return 1;
	}
168

169
	return 0;
170 171
}

J
Jaegeuk Kim 已提交
172
/*
173 174
 * Set multimedia files as cold files for hot/cold data separation
 */
C
Chao Yu 已提交
175
static inline void set_file_temperature(struct f2fs_sb_info *sbi, struct inode *inode,
176 177
		const unsigned char *name)
{
178
	__u8 (*extlist)[F2FS_EXTENSION_LEN] = sbi->raw_super->extension_list;
C
Chao Yu 已提交
179
	int i, cold_count, hot_count;
180 181 182

	down_read(&sbi->sb_lock);

C
Chao Yu 已提交
183 184
	cold_count = le32_to_cpu(sbi->raw_super->extension_count);
	hot_count = sbi->raw_super->hot_ext_count;
185

C
Chao Yu 已提交
186 187 188 189
	for (i = 0; i < cold_count + hot_count; i++) {
		if (!is_extension_exist(name, extlist[i]))
			continue;
		if (i < cold_count)
190
			file_set_cold(inode);
C
Chao Yu 已提交
191 192 193
		else
			file_set_hot(inode);
		break;
194
	}
195 196 197 198

	up_read(&sbi->sb_lock);
}

C
Chao Yu 已提交
199
int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
C
Chao Yu 已提交
200
							bool hot, bool set)
201 202
{
	__u8 (*extlist)[F2FS_EXTENSION_LEN] = sbi->raw_super->extension_list;
C
Chao Yu 已提交
203 204 205 206
	int cold_count = le32_to_cpu(sbi->raw_super->extension_count);
	int hot_count = sbi->raw_super->hot_ext_count;
	int total_count = cold_count + hot_count;
	int start, count;
207 208
	int i;

C
Chao Yu 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
	if (set) {
		if (total_count == F2FS_MAX_EXTENSION)
			return -EINVAL;
	} else {
		if (!hot && !cold_count)
			return -EINVAL;
		if (hot && !hot_count)
			return -EINVAL;
	}

	if (hot) {
		start = cold_count;
		count = total_count;
	} else {
		start = 0;
		count = cold_count;
	}

	for (i = start; i < count; i++) {
228 229 230 231 232 233 234
		if (strcmp(name, extlist[i]))
			continue;

		if (set)
			return -EINVAL;

		memcpy(extlist[i], extlist[i + 1],
C
Chao Yu 已提交
235 236 237 238 239 240 241
				F2FS_EXTENSION_LEN * (total_count - i - 1));
		memset(extlist[total_count - 1], 0, F2FS_EXTENSION_LEN);
		if (hot)
			sbi->raw_super->hot_ext_count = hot_count - 1;
		else
			sbi->raw_super->extension_count =
						cpu_to_le32(cold_count - 1);
242 243 244 245 246 247
		return 0;
	}

	if (!set)
		return -EINVAL;

C
Chao Yu 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261
	if (hot) {
		strncpy(extlist[count], name, strlen(name));
		sbi->raw_super->hot_ext_count = hot_count + 1;
	} else {
		char buf[F2FS_MAX_EXTENSION][F2FS_EXTENSION_LEN];

		memcpy(buf, &extlist[cold_count],
				F2FS_EXTENSION_LEN * hot_count);
		memset(extlist[cold_count], 0, F2FS_EXTENSION_LEN);
		strncpy(extlist[cold_count], name, strlen(name));
		memcpy(&extlist[cold_count + 1], buf,
				F2FS_EXTENSION_LEN * hot_count);
		sbi->raw_super->extension_count = cpu_to_le32(cold_count + 1);
	}
262
	return 0;
263 264 265 266 267
}

static int f2fs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
						bool excl)
{
268
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
269 270
	struct inode *inode;
	nid_t ino = 0;
271
	int err;
272

273 274 275
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
276 277 278 279
	err = dquot_initialize(dir);
	if (err)
		return err;

280 281 282 283 284
	inode = f2fs_new_inode(dir, mode);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

	if (!test_opt(sbi, DISABLE_EXT_IDENTIFY))
C
Chao Yu 已提交
285
		set_file_temperature(sbi, inode, dentry->d_name.name);
286 287 288 289 290 291

	inode->i_op = &f2fs_file_inode_operations;
	inode->i_fop = &f2fs_file_operations;
	inode->i_mapping->a_ops = &f2fs_dblock_aops;
	ino = inode->i_ino;

292
	f2fs_lock_op(sbi);
293 294 295
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
296
	f2fs_unlock_op(sbi);
297

C
Chao Yu 已提交
298
	f2fs_alloc_nid_done(sbi, ino);
299

300
	d_instantiate_new(dentry, inode);
J
Jaegeuk Kim 已提交
301 302 303

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
304 305

	f2fs_balance_fs(sbi, true);
306 307
	return 0;
out:
C
Chao Yu 已提交
308
	f2fs_handle_failed_inode(inode);
309 310 311 312 313 314
	return err;
}

static int f2fs_link(struct dentry *old_dentry, struct inode *dir,
		struct dentry *dentry)
{
315
	struct inode *inode = d_inode(old_dentry);
316
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
317
	int err;
318

319 320 321
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

322 323 324
	err = fscrypt_prepare_link(old_dentry, dir, dentry);
	if (err)
		return err;
325

C
Chao Yu 已提交
326 327 328 329 330
	if (is_inode_flag_set(dir, FI_PROJ_INHERIT) &&
			(!projid_eq(F2FS_I(dir)->i_projid,
			F2FS_I(old_dentry->d_inode)->i_projid)))
		return -EXDEV;

C
Chao Yu 已提交
331 332 333 334
	err = dquot_initialize(dir);
	if (err)
		return err;

J
Jaegeuk Kim 已提交
335
	f2fs_balance_fs(sbi, true);
336

337
	inode->i_ctime = current_time(inode);
J
Jaegeuk Kim 已提交
338
	ihold(inode);
339

340
	set_inode_flag(inode, FI_INC_LINK);
341
	f2fs_lock_op(sbi);
342 343 344
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
345
	f2fs_unlock_op(sbi);
346 347

	d_instantiate(dentry, inode);
J
Jaegeuk Kim 已提交
348 349 350

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
351 352
	return 0;
out:
353
	clear_inode_flag(inode, FI_INC_LINK);
354
	iput(inode);
355
	f2fs_unlock_op(sbi);
356 357 358 359 360 361
	return err;
}

struct dentry *f2fs_get_parent(struct dentry *child)
{
	struct qstr dotdot = QSTR_INIT("..", 2);
362 363 364 365 366
	struct page *page;
	unsigned long ino = f2fs_inode_by_name(d_inode(child), &dotdot, &page);
	if (!ino) {
		if (IS_ERR(page))
			return ERR_CAST(page);
367
		return ERR_PTR(-ENOENT);
368
	}
369
	return d_obtain_alias(f2fs_iget(child->d_sb, ino));
370 371
}

372 373 374 375 376 377 378 379 380
static int __recover_dot_dentries(struct inode *dir, nid_t pino)
{
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
	struct qstr dot = QSTR_INIT(".", 1);
	struct qstr dotdot = QSTR_INIT("..", 2);
	struct f2fs_dir_entry *de;
	struct page *page;
	int err = 0;

381 382 383 384 385 386 387
	if (f2fs_readonly(sbi->sb)) {
		f2fs_msg(sbi->sb, KERN_INFO,
			"skip recovering inline_dots inode (ino:%lu, pino:%u) "
			"in readonly mountpoint", dir->i_ino, pino);
		return 0;
	}

388 389 390 391
	err = dquot_initialize(dir);
	if (err)
		return err;

J
Jaegeuk Kim 已提交
392
	f2fs_balance_fs(sbi, true);
393

394 395 396 397 398
	f2fs_lock_op(sbi);

	de = f2fs_find_entry(dir, &dot, &page);
	if (de) {
		f2fs_put_page(page, 0);
399 400 401
	} else if (IS_ERR(page)) {
		err = PTR_ERR(page);
		goto out;
402
	} else {
C
Chao Yu 已提交
403
		err = f2fs_do_add_link(dir, &dot, NULL, dir->i_ino, S_IFDIR);
404 405 406 407 408
		if (err)
			goto out;
	}

	de = f2fs_find_entry(dir, &dotdot, &page);
409
	if (de)
410
		f2fs_put_page(page, 0);
411
	else if (IS_ERR(page))
412
		err = PTR_ERR(page);
413
	else
C
Chao Yu 已提交
414
		err = f2fs_do_add_link(dir, &dotdot, NULL, pino, S_IFDIR);
415
out:
416
	if (!err)
417
		clear_inode_flag(dir, FI_INLINE_DOTS);
418 419 420 421 422

	f2fs_unlock_op(sbi);
	return err;
}

423 424 425 426 427 428
static struct dentry *f2fs_lookup(struct inode *dir, struct dentry *dentry,
		unsigned int flags)
{
	struct inode *inode = NULL;
	struct f2fs_dir_entry *de;
	struct page *page;
C
Chao Yu 已提交
429 430
	struct dentry *new;
	nid_t ino = -1;
431
	int err = 0;
432
	unsigned int root_ino = F2FS_ROOT_INO(F2FS_I_SB(dir));
433

C
Chao Yu 已提交
434 435
	trace_f2fs_lookup_start(dir, dentry, flags);

436 437 438
	err = fscrypt_prepare_lookup(dir, dentry, flags);
	if (err)
		goto out;
439

C
Chao Yu 已提交
440 441 442 443
	if (dentry->d_name.len > F2FS_NAME_LEN) {
		err = -ENAMETOOLONG;
		goto out;
	}
444 445

	de = f2fs_find_entry(dir, &dentry->d_name, &page);
J
Jaegeuk Kim 已提交
446
	if (!de) {
C
Chao Yu 已提交
447 448 449 450 451
		if (IS_ERR(page)) {
			err = PTR_ERR(page);
			goto out;
		}
		goto out_splice;
J
Jaegeuk Kim 已提交
452
	}
453

J
Jaegeuk Kim 已提交
454 455
	ino = le32_to_cpu(de->ino);
	f2fs_put_page(page, 0);
456

J
Jaegeuk Kim 已提交
457
	inode = f2fs_iget(dir->i_sb, ino);
C
Chao Yu 已提交
458 459 460 461
	if (IS_ERR(inode)) {
		err = PTR_ERR(inode);
		goto out;
	}
462

463 464 465
	if ((dir->i_ino == root_ino) && f2fs_has_inline_dots(dir)) {
		err = __recover_dot_dentries(dir, root_ino);
		if (err)
C
Chao Yu 已提交
466
			goto out_iput;
467 468
	}

469
	if (f2fs_has_inline_dots(inode)) {
J
Jaegeuk Kim 已提交
470
		err = __recover_dot_dentries(inode, dir->i_ino);
471
		if (err)
C
Chao Yu 已提交
472
			goto out_iput;
473
	}
D
Dan Carpenter 已提交
474 475 476
	if (f2fs_encrypted_inode(dir) &&
	    (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
	    !fscrypt_has_permitted_context(dir, inode)) {
477 478 479 480
		f2fs_msg(inode->i_sb, KERN_WARNING,
			 "Inconsistent encryption contexts: %lu/%lu",
			 dir->i_ino, inode->i_ino);
		err = -EPERM;
C
Chao Yu 已提交
481
		goto out_iput;
482
	}
C
Chao Yu 已提交
483 484 485 486 487 488 489
out_splice:
	new = d_splice_alias(inode, dentry);
	if (IS_ERR(new))
		err = PTR_ERR(new);
	trace_f2fs_lookup_end(dir, dentry, ino, err);
	return new;
out_iput:
490
	iput(inode);
C
Chao Yu 已提交
491 492
out:
	trace_f2fs_lookup_end(dir, dentry, ino, err);
493
	return ERR_PTR(err);
494 495 496 497
}

static int f2fs_unlink(struct inode *dir, struct dentry *dentry)
{
498
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
499
	struct inode *inode = d_inode(dentry);
500 501 502 503
	struct f2fs_dir_entry *de;
	struct page *page;
	int err = -ENOENT;

504
	trace_f2fs_unlink_enter(dir, dentry);
505

506 507 508
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
509
	err = dquot_initialize(dir);
J
Jaegeuk Kim 已提交
510 511 512
	if (err)
		return err;
	err = dquot_initialize(inode);
C
Chao Yu 已提交
513 514 515
	if (err)
		return err;

516
	de = f2fs_find_entry(dir, &dentry->d_name, &page);
517 518 519
	if (!de) {
		if (IS_ERR(page))
			err = PTR_ERR(page);
520
		goto fail;
521
	}
522

J
Jaegeuk Kim 已提交
523
	f2fs_balance_fs(sbi, true);
524

525
	f2fs_lock_op(sbi);
C
Chao Yu 已提交
526
	err = f2fs_acquire_orphan_inode(sbi);
527
	if (err) {
528
		f2fs_unlock_op(sbi);
529 530 531
		f2fs_put_page(page, 0);
		goto fail;
	}
532
	f2fs_delete_entry(de, page, dir, inode);
533
	f2fs_unlock_op(sbi);
534

J
Jaegeuk Kim 已提交
535 536
	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
537
fail:
538
	trace_f2fs_unlink_exit(inode, err);
539 540 541
	return err;
}

542
static const char *f2fs_get_link(struct dentry *dentry,
543 544
				 struct inode *inode,
				 struct delayed_call *done)
545
{
546
	const char *link = page_get_link(dentry, inode, done);
547 548
	if (!IS_ERR(link) && !*link) {
		/* this is broken symlink case */
549 550
		do_delayed_call(done);
		clear_delayed_call(done);
551
		link = ERR_PTR(-ENOENT);
552
	}
553
	return link;
554 555
}

556 557 558
static int f2fs_symlink(struct inode *dir, struct dentry *dentry,
					const char *symname)
{
559
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
560
	struct inode *inode;
561
	size_t len = strlen(symname);
562
	struct fscrypt_str disk_link;
563
	int err;
564

565 566 567
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

568 569 570 571
	err = fscrypt_prepare_symlink(dir, symname, len, dir->i_sb->s_blocksize,
				      &disk_link);
	if (err)
		return err;
572

C
Chao Yu 已提交
573 574 575 576
	err = dquot_initialize(dir);
	if (err)
		return err;

577 578 579 580
	inode = f2fs_new_inode(dir, S_IFLNK | S_IRWXUGO);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

581
	if (IS_ENCRYPTED(inode))
582 583 584
		inode->i_op = &f2fs_encrypted_symlink_inode_operations;
	else
		inode->i_op = &f2fs_symlink_inode_operations;
585
	inode_nohighmem(inode);
586 587
	inode->i_mapping->a_ops = &f2fs_dblock_aops;

588
	f2fs_lock_op(sbi);
589 590
	err = f2fs_add_link(dentry, inode);
	if (err)
C
Chao Yu 已提交
591
		goto out_f2fs_handle_failed_inode;
592
	f2fs_unlock_op(sbi);
C
Chao Yu 已提交
593
	f2fs_alloc_nid_done(sbi, inode->i_ino);
594

595 596 597
	err = fscrypt_encrypt_symlink(inode, symname, len, &disk_link);
	if (err)
		goto err_out;
598

599
	err = page_symlink(inode, disk_link.name, disk_link.len);
600 601

err_out:
602
	d_instantiate_new(dentry, inode);
J
Jaegeuk Kim 已提交
603

604 605 606 607 608 609 610 611 612
	/*
	 * Let's flush symlink data in order to avoid broken symlink as much as
	 * possible. Nevertheless, fsyncing is the best way, but there is no
	 * way to get a file descriptor in order to flush that.
	 *
	 * Note that, it needs to do dir->fsync to make this recoverable.
	 * If the symlink path is stored into inline_data, there is no
	 * performance regression.
	 */
C
Chao Yu 已提交
613
	if (!err) {
614 615
		filemap_write_and_wait_range(inode->i_mapping, 0,
							disk_link.len - 1);
616

C
Chao Yu 已提交
617 618 619 620 621
		if (IS_DIRSYNC(dir))
			f2fs_sync_fs(sbi->sb, 1);
	} else {
		f2fs_unlink(dir, dentry);
	}
622

623
	f2fs_balance_fs(sbi, true);
624 625
	goto out_free_encrypted_link;

C
Chao Yu 已提交
626 627
out_f2fs_handle_failed_inode:
	f2fs_handle_failed_inode(inode);
628 629 630
out_free_encrypted_link:
	if (disk_link.name != (unsigned char *)symname)
		kfree(disk_link.name);
631 632 633 634 635
	return err;
}

static int f2fs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
{
636
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
637
	struct inode *inode;
638
	int err;
639

640 641 642
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
643 644 645 646
	err = dquot_initialize(dir);
	if (err)
		return err;

647 648
	inode = f2fs_new_inode(dir, S_IFDIR | mode);
	if (IS_ERR(inode))
649
		return PTR_ERR(inode);
650 651 652 653

	inode->i_op = &f2fs_dir_inode_operations;
	inode->i_fop = &f2fs_dir_operations;
	inode->i_mapping->a_ops = &f2fs_dblock_aops;
654
	inode_nohighmem(inode);
655

656
	set_inode_flag(inode, FI_INC_LINK);
657
	f2fs_lock_op(sbi);
658 659 660
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out_fail;
661
	f2fs_unlock_op(sbi);
662

C
Chao Yu 已提交
663
	f2fs_alloc_nid_done(sbi, inode->i_ino);
664

665
	d_instantiate_new(dentry, inode);
666

J
Jaegeuk Kim 已提交
667 668
	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
669 670

	f2fs_balance_fs(sbi, true);
671 672 673
	return 0;

out_fail:
674
	clear_inode_flag(inode, FI_INC_LINK);
C
Chao Yu 已提交
675
	f2fs_handle_failed_inode(inode);
676 677 678 679 680
	return err;
}

static int f2fs_rmdir(struct inode *dir, struct dentry *dentry)
{
681
	struct inode *inode = d_inode(dentry);
682 683 684 685 686 687 688 689
	if (f2fs_empty_dir(inode))
		return f2fs_unlink(dir, dentry);
	return -ENOTEMPTY;
}

static int f2fs_mknod(struct inode *dir, struct dentry *dentry,
				umode_t mode, dev_t rdev)
{
690
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
691 692 693
	struct inode *inode;
	int err = 0;

694 695 696
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
697 698 699 700
	err = dquot_initialize(dir);
	if (err)
		return err;

701 702 703 704 705 706 707
	inode = f2fs_new_inode(dir, mode);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

	init_special_inode(inode, inode->i_mode, rdev);
	inode->i_op = &f2fs_special_inode_operations;

708
	f2fs_lock_op(sbi);
709 710 711
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
712
	f2fs_unlock_op(sbi);
713

C
Chao Yu 已提交
714
	f2fs_alloc_nid_done(sbi, inode->i_ino);
J
Jaegeuk Kim 已提交
715

716
	d_instantiate_new(dentry, inode);
J
Jaegeuk Kim 已提交
717 718 719

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
720 721

	f2fs_balance_fs(sbi, true);
722 723
	return 0;
out:
C
Chao Yu 已提交
724
	f2fs_handle_failed_inode(inode);
725 726 727
	return err;
}

C
Chao Yu 已提交
728 729 730 731 732 733 734
static int __f2fs_tmpfile(struct inode *dir, struct dentry *dentry,
					umode_t mode, struct inode **whiteout)
{
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
	struct inode *inode;
	int err;

C
Chao Yu 已提交
735 736 737 738
	err = dquot_initialize(dir);
	if (err)
		return err;

C
Chao Yu 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751 752
	inode = f2fs_new_inode(dir, mode);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

	if (whiteout) {
		init_special_inode(inode, inode->i_mode, WHITEOUT_DEV);
		inode->i_op = &f2fs_special_inode_operations;
	} else {
		inode->i_op = &f2fs_file_inode_operations;
		inode->i_fop = &f2fs_file_operations;
		inode->i_mapping->a_ops = &f2fs_dblock_aops;
	}

	f2fs_lock_op(sbi);
C
Chao Yu 已提交
753
	err = f2fs_acquire_orphan_inode(sbi);
C
Chao Yu 已提交
754 755 756 757 758 759 760 761 762 763 764
	if (err)
		goto out;

	err = f2fs_do_tmpfile(inode, dir);
	if (err)
		goto release_out;

	/*
	 * add this non-linked tmpfile to orphan list, in this way we could
	 * remove all unused data of tmpfile after abnormal power-off.
	 */
C
Chao Yu 已提交
765 766
	f2fs_add_orphan_inode(inode);
	f2fs_alloc_nid_done(sbi, inode->i_ino);
C
Chao Yu 已提交
767 768

	if (whiteout) {
769
		f2fs_i_links_write(inode, false);
C
Chao Yu 已提交
770 771 772 773
		*whiteout = inode;
	} else {
		d_tmpfile(dentry, inode);
	}
774 775
	/* link_count was changed by d_tmpfile as well. */
	f2fs_unlock_op(sbi);
C
Chao Yu 已提交
776
	unlock_new_inode(inode);
777 778

	f2fs_balance_fs(sbi, true);
C
Chao Yu 已提交
779 780 781
	return 0;

release_out:
C
Chao Yu 已提交
782
	f2fs_release_orphan_inode(sbi);
C
Chao Yu 已提交
783
out:
C
Chao Yu 已提交
784
	f2fs_handle_failed_inode(inode);
C
Chao Yu 已提交
785 786 787 788 789
	return err;
}

static int f2fs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
{
790 791 792
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);

	if (unlikely(f2fs_cp_error(sbi)))
793 794
		return -EIO;

795
	if (f2fs_encrypted_inode(dir) || DUMMY_ENCRYPTION_ENABLED(sbi)) {
796
		int err = fscrypt_get_encryption_info(dir);
797 798 799 800
		if (err)
			return err;
	}

C
Chao Yu 已提交
801 802 803 804 805
	return __f2fs_tmpfile(dir, dentry, mode, NULL);
}

static int f2fs_create_whiteout(struct inode *dir, struct inode **whiteout)
{
806 807 808
	if (unlikely(f2fs_cp_error(F2FS_I_SB(dir))))
		return -EIO;

C
Chao Yu 已提交
809 810 811
	return __f2fs_tmpfile(dir, NULL, S_IFCHR | WHITEOUT_MODE, whiteout);
}

812
static int f2fs_rename(struct inode *old_dir, struct dentry *old_dentry,
C
Chao Yu 已提交
813 814
			struct inode *new_dir, struct dentry *new_dentry,
			unsigned int flags)
815
{
816
	struct f2fs_sb_info *sbi = F2FS_I_SB(old_dir);
817 818
	struct inode *old_inode = d_inode(old_dentry);
	struct inode *new_inode = d_inode(new_dentry);
C
Chao Yu 已提交
819
	struct inode *whiteout = NULL;
820
	struct page *old_dir_page;
C
Chao Yu 已提交
821
	struct page *old_page, *new_page = NULL;
822 823 824
	struct f2fs_dir_entry *old_dir_entry = NULL;
	struct f2fs_dir_entry *old_entry;
	struct f2fs_dir_entry *new_entry;
825
	bool is_old_inline = f2fs_has_inline_dentry(old_dir);
826
	int err = -ENOENT;
827

828 829 830
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
831 832 833 834 835
	if (is_inode_flag_set(new_dir, FI_PROJ_INHERIT) &&
			(!projid_eq(F2FS_I(new_dir)->i_projid,
			F2FS_I(old_dentry->d_inode)->i_projid)))
		return -EXDEV;

C
Chao Yu 已提交
836 837 838 839 840 841 842 843
	err = dquot_initialize(old_dir);
	if (err)
		goto out;

	err = dquot_initialize(new_dir);
	if (err)
		goto out;

J
Jaegeuk Kim 已提交
844 845 846 847 848 849
	if (new_inode) {
		err = dquot_initialize(new_inode);
		if (err)
			goto out;
	}

850
	old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page);
851 852 853
	if (!old_entry) {
		if (IS_ERR(old_page))
			err = PTR_ERR(old_page);
854
		goto out;
855
	}
856 857 858

	if (S_ISDIR(old_inode->i_mode)) {
		old_dir_entry = f2fs_parent_dir(old_inode, &old_dir_page);
859
		if (!old_dir_entry) {
860 861
			if (IS_ERR(old_dir_page))
				err = PTR_ERR(old_dir_page);
862
			goto out_old;
863
		}
864 865
	}

C
Chao Yu 已提交
866 867 868 869 870 871
	if (flags & RENAME_WHITEOUT) {
		err = f2fs_create_whiteout(old_dir, &whiteout);
		if (err)
			goto out_dir;
	}

872 873 874 875
	if (new_inode) {

		err = -ENOTEMPTY;
		if (old_dir_entry && !f2fs_empty_dir(new_inode))
C
Chao Yu 已提交
876
			goto out_whiteout;
877 878 879 880

		err = -ENOENT;
		new_entry = f2fs_find_entry(new_dir, &new_dentry->d_name,
						&new_page);
881 882 883
		if (!new_entry) {
			if (IS_ERR(new_page))
				err = PTR_ERR(new_page);
C
Chao Yu 已提交
884
			goto out_whiteout;
885
		}
886

J
Jaegeuk Kim 已提交
887
		f2fs_balance_fs(sbi, true);
888

889 890
		f2fs_lock_op(sbi);

C
Chao Yu 已提交
891
		err = f2fs_acquire_orphan_inode(sbi);
J
Jaegeuk Kim 已提交
892 893 894
		if (err)
			goto put_out_dir;

895 896
		f2fs_set_link(new_dir, new_entry, new_page, old_inode);

897
		new_inode->i_ctime = current_time(new_inode);
898
		down_write(&F2FS_I(new_inode)->i_sem);
899
		if (old_dir_entry)
900 901
			f2fs_i_links_write(new_inode, false);
		f2fs_i_links_write(new_inode, false);
902 903
		up_write(&F2FS_I(new_inode)->i_sem);

904
		if (!new_inode->i_nlink)
C
Chao Yu 已提交
905
			f2fs_add_orphan_inode(new_inode);
J
Jaegeuk Kim 已提交
906
		else
C
Chao Yu 已提交
907
			f2fs_release_orphan_inode(sbi);
908
	} else {
J
Jaegeuk Kim 已提交
909
		f2fs_balance_fs(sbi, true);
910

911 912
		f2fs_lock_op(sbi);

913
		err = f2fs_add_link(new_dentry, old_inode);
914 915
		if (err) {
			f2fs_unlock_op(sbi);
C
Chao Yu 已提交
916
			goto out_whiteout;
917
		}
918

919
		if (old_dir_entry)
920
			f2fs_i_links_write(new_dir, true);
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935

		/*
		 * old entry and new entry can locate in the same inline
		 * dentry in inode, when attaching new entry in inline dentry,
		 * it could force inline dentry conversion, after that,
		 * old_entry and old_page will point to wrong address, in
		 * order to avoid this, let's do the check and update here.
		 */
		if (is_old_inline && !f2fs_has_inline_dentry(old_dir)) {
			f2fs_put_page(old_page, 0);
			old_page = NULL;

			old_entry = f2fs_find_entry(old_dir,
						&old_dentry->d_name, &old_page);
			if (!old_entry) {
936 937 938
				err = -ENOENT;
				if (IS_ERR(old_page))
					err = PTR_ERR(old_page);
939 940 941 942
				f2fs_unlock_op(sbi);
				goto out_whiteout;
			}
		}
943 944
	}

945
	down_write(&F2FS_I(old_inode)->i_sem);
946 947 948 949
	if (!old_dir_entry || whiteout)
		file_lost_pino(old_inode);
	else
		F2FS_I(old_inode)->i_pino = new_dir->i_ino;
950 951
	up_write(&F2FS_I(old_inode)->i_sem);

952
	old_inode->i_ctime = current_time(old_inode);
953
	f2fs_mark_inode_dirty_sync(old_inode, false);
954

955
	f2fs_delete_entry(old_entry, old_page, old_dir, NULL);
956

C
Chao Yu 已提交
957 958
	if (whiteout) {
		whiteout->i_state |= I_LINKABLE;
959
		set_inode_flag(whiteout, FI_INC_LINK);
C
Chao Yu 已提交
960 961 962 963 964 965 966
		err = f2fs_add_link(old_dentry, whiteout);
		if (err)
			goto put_out_dir;
		whiteout->i_state &= ~I_LINKABLE;
		iput(whiteout);
	}

967
	if (old_dir_entry) {
968
		if (old_dir != new_dir && !whiteout)
969 970
			f2fs_set_link(old_inode, old_dir_entry,
						old_dir_page, new_dir);
971
		else
972
			f2fs_put_page(old_dir_page, 0);
973
		f2fs_i_links_write(old_dir, false);
974
	}
975
	if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT) {
C
Chao Yu 已提交
976
		f2fs_add_ino_entry(sbi, new_dir->i_ino, TRANS_DIR_INO);
977
		if (S_ISDIR(old_inode->i_mode))
C
Chao Yu 已提交
978 979
			f2fs_add_ino_entry(sbi, old_inode->i_ino,
							TRANS_DIR_INO);
980
	}
981

982
	f2fs_unlock_op(sbi);
J
Jaegeuk Kim 已提交
983 984 985

	if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
		f2fs_sync_fs(sbi->sb, 1);
986 987
	return 0;

J
Jaegeuk Kim 已提交
988
put_out_dir:
989
	f2fs_unlock_op(sbi);
990
	if (new_page)
C
Chao Yu 已提交
991 992 993 994
		f2fs_put_page(new_page, 0);
out_whiteout:
	if (whiteout)
		iput(whiteout);
995
out_dir:
996
	if (old_dir_entry)
997 998 999 1000 1001 1002 1003
		f2fs_put_page(old_dir_page, 0);
out_old:
	f2fs_put_page(old_page, 0);
out:
	return err;
}

C
Chao Yu 已提交
1004 1005 1006
static int f2fs_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
			     struct inode *new_dir, struct dentry *new_dentry)
{
1007
	struct f2fs_sb_info *sbi = F2FS_I_SB(old_dir);
1008 1009
	struct inode *old_inode = d_inode(old_dentry);
	struct inode *new_inode = d_inode(new_dentry);
C
Chao Yu 已提交
1010 1011 1012 1013 1014 1015
	struct page *old_dir_page, *new_dir_page;
	struct page *old_page, *new_page;
	struct f2fs_dir_entry *old_dir_entry = NULL, *new_dir_entry = NULL;
	struct f2fs_dir_entry *old_entry, *new_entry;
	int old_nlink = 0, new_nlink = 0;
	int err = -ENOENT;
1016

1017 1018 1019
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
1020 1021 1022 1023 1024 1025 1026 1027
	if ((is_inode_flag_set(new_dir, FI_PROJ_INHERIT) &&
			!projid_eq(F2FS_I(new_dir)->i_projid,
			F2FS_I(old_dentry->d_inode)->i_projid)) ||
	    (is_inode_flag_set(new_dir, FI_PROJ_INHERIT) &&
			!projid_eq(F2FS_I(old_dir)->i_projid,
			F2FS_I(new_dentry->d_inode)->i_projid)))
		return -EXDEV;

C
Chao Yu 已提交
1028 1029 1030 1031 1032 1033 1034 1035
	err = dquot_initialize(old_dir);
	if (err)
		goto out;

	err = dquot_initialize(new_dir);
	if (err)
		goto out;

C
Chao Yu 已提交
1036
	old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page);
1037 1038 1039
	if (!old_entry) {
		if (IS_ERR(old_page))
			err = PTR_ERR(old_page);
C
Chao Yu 已提交
1040
		goto out;
1041
	}
C
Chao Yu 已提交
1042 1043

	new_entry = f2fs_find_entry(new_dir, &new_dentry->d_name, &new_page);
1044 1045 1046
	if (!new_entry) {
		if (IS_ERR(new_page))
			err = PTR_ERR(new_page);
C
Chao Yu 已提交
1047
		goto out_old;
1048
	}
C
Chao Yu 已提交
1049 1050 1051 1052 1053 1054

	/* prepare for updating ".." directory entry info later */
	if (old_dir != new_dir) {
		if (S_ISDIR(old_inode->i_mode)) {
			old_dir_entry = f2fs_parent_dir(old_inode,
							&old_dir_page);
1055
			if (!old_dir_entry) {
1056 1057
				if (IS_ERR(old_dir_page))
					err = PTR_ERR(old_dir_page);
C
Chao Yu 已提交
1058
				goto out_new;
1059
			}
C
Chao Yu 已提交
1060 1061 1062 1063 1064
		}

		if (S_ISDIR(new_inode->i_mode)) {
			new_dir_entry = f2fs_parent_dir(new_inode,
							&new_dir_page);
1065
			if (!new_dir_entry) {
1066 1067
				if (IS_ERR(new_dir_page))
					err = PTR_ERR(new_dir_page);
C
Chao Yu 已提交
1068
				goto out_old_dir;
1069
			}
C
Chao Yu 已提交
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
		}
	}

	/*
	 * If cross rename between file and directory those are not
	 * in the same directory, we will inc nlink of file's parent
	 * later, so we should check upper boundary of its nlink.
	 */
	if ((!old_dir_entry || !new_dir_entry) &&
				old_dir_entry != new_dir_entry) {
		old_nlink = old_dir_entry ? -1 : 1;
		new_nlink = -old_nlink;
		err = -EMLINK;
1083 1084
		if ((old_nlink > 0 && old_dir->i_nlink >= F2FS_LINK_MAX) ||
			(new_nlink > 0 && new_dir->i_nlink >= F2FS_LINK_MAX))
C
Chao Yu 已提交
1085 1086 1087
			goto out_new_dir;
	}

J
Jaegeuk Kim 已提交
1088
	f2fs_balance_fs(sbi, true);
1089

C
Chao Yu 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
	f2fs_lock_op(sbi);

	/* update ".." directory entry info of old dentry */
	if (old_dir_entry)
		f2fs_set_link(old_inode, old_dir_entry, old_dir_page, new_dir);

	/* update ".." directory entry info of new dentry */
	if (new_dir_entry)
		f2fs_set_link(new_inode, new_dir_entry, new_dir_page, old_dir);

	/* update directory entry info of old dir inode */
	f2fs_set_link(old_dir, old_entry, old_page, new_inode);

	down_write(&F2FS_I(old_inode)->i_sem);
	file_lost_pino(old_inode);
	up_write(&F2FS_I(old_inode)->i_sem);

1107
	old_dir->i_ctime = current_time(old_dir);
C
Chao Yu 已提交
1108 1109
	if (old_nlink) {
		down_write(&F2FS_I(old_dir)->i_sem);
1110
		f2fs_i_links_write(old_dir, old_nlink > 0);
C
Chao Yu 已提交
1111 1112
		up_write(&F2FS_I(old_dir)->i_sem);
	}
1113
	f2fs_mark_inode_dirty_sync(old_dir, false);
C
Chao Yu 已提交
1114 1115 1116 1117 1118 1119 1120 1121

	/* update directory entry info of new dir inode */
	f2fs_set_link(new_dir, new_entry, new_page, old_inode);

	down_write(&F2FS_I(new_inode)->i_sem);
	file_lost_pino(new_inode);
	up_write(&F2FS_I(new_inode)->i_sem);

1122
	new_dir->i_ctime = current_time(new_dir);
C
Chao Yu 已提交
1123 1124
	if (new_nlink) {
		down_write(&F2FS_I(new_dir)->i_sem);
1125
		f2fs_i_links_write(new_dir, new_nlink > 0);
C
Chao Yu 已提交
1126 1127
		up_write(&F2FS_I(new_dir)->i_sem);
	}
1128
	f2fs_mark_inode_dirty_sync(new_dir, false);
C
Chao Yu 已提交
1129

1130
	if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT) {
C
Chao Yu 已提交
1131 1132
		f2fs_add_ino_entry(sbi, old_dir->i_ino, TRANS_DIR_INO);
		f2fs_add_ino_entry(sbi, new_dir->i_ino, TRANS_DIR_INO);
1133
	}
1134

C
Chao Yu 已提交
1135
	f2fs_unlock_op(sbi);
J
Jaegeuk Kim 已提交
1136 1137 1138

	if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
		f2fs_sync_fs(sbi->sb, 1);
C
Chao Yu 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
	return 0;
out_new_dir:
	if (new_dir_entry) {
		f2fs_put_page(new_dir_page, 0);
	}
out_old_dir:
	if (old_dir_entry) {
		f2fs_put_page(old_dir_page, 0);
	}
out_new:
	f2fs_put_page(new_page, 0);
out_old:
	f2fs_put_page(old_page, 0);
out:
	return err;
}

static int f2fs_rename2(struct inode *old_dir, struct dentry *old_dentry,
			struct inode *new_dir, struct dentry *new_dentry,
			unsigned int flags)
{
1160 1161
	int err;

C
Chao Yu 已提交
1162
	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
C
Chao Yu 已提交
1163 1164
		return -EINVAL;

1165 1166 1167 1168 1169
	err = fscrypt_prepare_rename(old_dir, old_dentry, new_dir, new_dentry,
				     flags);
	if (err)
		return err;

C
Chao Yu 已提交
1170 1171 1172 1173 1174 1175 1176 1177
	if (flags & RENAME_EXCHANGE) {
		return f2fs_cross_rename(old_dir, old_dentry,
					 new_dir, new_dentry);
	}
	/*
	 * VFS has already handled the new dentry existence case,
	 * here, we just deal with "RENAME_NOREPLACE" as regular rename.
	 */
C
Chao Yu 已提交
1178
	return f2fs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
C
Chao Yu 已提交
1179 1180
}

1181
static const char *f2fs_encrypted_get_link(struct dentry *dentry,
1182 1183
					   struct inode *inode,
					   struct delayed_call *done)
C
Chao Yu 已提交
1184
{
1185 1186
	struct page *page;
	const char *target;
1187

1188 1189 1190
	if (!dentry)
		return ERR_PTR(-ECHILD);

1191 1192 1193
	page = read_mapping_page(inode->i_mapping, 0, NULL);
	if (IS_ERR(page))
		return ERR_CAST(page);
1194

1195 1196 1197 1198
	target = fscrypt_get_symlink(inode, page_address(page),
				     inode->i_sb->s_blocksize, done);
	put_page(page);
	return target;
C
Chao Yu 已提交
1199 1200
}

1201
const struct inode_operations f2fs_encrypted_symlink_inode_operations = {
1202
	.get_link       = f2fs_encrypted_get_link,
1203 1204
	.getattr	= f2fs_getattr,
	.setattr	= f2fs_setattr,
1205
#ifdef CONFIG_F2FS_FS_XATTR
1206
	.listxattr	= f2fs_listxattr,
1207
#endif
1208 1209
};

1210 1211 1212 1213 1214 1215 1216 1217 1218
const struct inode_operations f2fs_dir_inode_operations = {
	.create		= f2fs_create,
	.lookup		= f2fs_lookup,
	.link		= f2fs_link,
	.unlink		= f2fs_unlink,
	.symlink	= f2fs_symlink,
	.mkdir		= f2fs_mkdir,
	.rmdir		= f2fs_rmdir,
	.mknod		= f2fs_mknod,
1219
	.rename		= f2fs_rename2,
C
Chao Yu 已提交
1220
	.tmpfile	= f2fs_tmpfile,
1221
	.getattr	= f2fs_getattr,
1222 1223
	.setattr	= f2fs_setattr,
	.get_acl	= f2fs_get_acl,
1224
	.set_acl	= f2fs_set_acl,
1225 1226 1227 1228 1229 1230
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};

const struct inode_operations f2fs_symlink_inode_operations = {
1231
	.get_link       = f2fs_get_link,
1232
	.getattr	= f2fs_getattr,
1233 1234 1235 1236 1237 1238 1239
	.setattr	= f2fs_setattr,
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};

const struct inode_operations f2fs_special_inode_operations = {
1240
	.getattr	= f2fs_getattr,
1241 1242
	.setattr        = f2fs_setattr,
	.get_acl	= f2fs_get_acl,
1243
	.set_acl	= f2fs_set_acl,
1244 1245 1246 1247
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};