namei.c 29.3 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);
40
	if (!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 55 56 57 58
	inode->i_generation = sbi->s_next_generation++;

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

C
Chao Yu 已提交
62 63 64 65 66 67 68
	if (f2fs_sb_has_project_quota(sbi->sb) &&
		(F2FS_I(dir)->i_flags & FS_PROJINHERIT_FL))
		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 已提交
69 70 71 72 73 74 75 76
	err = dquot_initialize(inode);
	if (err)
		goto fail_drop;

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

77 78 79 80
	/* If the directory encrypted, then we should encrypt the inode. */
	if (f2fs_encrypted_inode(dir) && f2fs_may_encrypt(inode))
		f2fs_set_encrypted_inode(inode);

81 82
	set_inode_flag(inode, FI_NEW_INODE);

83 84 85 86 87
	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;
	}

88 89
	if (test_opt(sbi, INLINE_XATTR))
		set_inode_flag(inode, FI_INLINE_XATTR);
C
Chao Yu 已提交
90

91
	if (test_opt(sbi, INLINE_DATA) && f2fs_may_inline_data(inode))
92
		set_inode_flag(inode, FI_INLINE_DATA);
93
	if (f2fs_may_inline_dentry(inode))
94
		set_inode_flag(inode, FI_INLINE_DENTRY);
C
Chao Yu 已提交
95

C
Chao Yu 已提交
96 97 98 99 100 101 102 103 104 105 106
	if (f2fs_sb_has_flexible_inline_xattr(sbi->sb)) {
		f2fs_bug_on(sbi, !f2fs_has_extra_attr(inode));
		if (f2fs_has_inline_xattr(inode))
			xattr_size = sbi->inline_xattr_size;
		/* 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 已提交
107 108
	f2fs_init_extent_tree(inode, NULL);

C
Chao Yu 已提交
109
	stat_inc_inline_xattr(inode);
110 111 112
	stat_inc_inline_inode(inode);
	stat_inc_inline_dir(inode);

C
Chao Yu 已提交
113 114 115
	F2FS_I(inode)->i_flags =
		f2fs_mask_flags(mode, F2FS_I(dir)->i_flags & F2FS_FL_INHERITED);

C
Chao Yu 已提交
116 117 118
	if (S_ISDIR(inode->i_mode))
		F2FS_I(inode)->i_flags |= FS_INDEX_FL;

C
Chao Yu 已提交
119 120 121
	if (F2FS_I(inode)->i_flags & FS_PROJINHERIT_FL)
		set_inode_flag(inode, FI_PROJ_INHERIT);

122
	trace_f2fs_new_inode(inode, 0);
123 124 125
	return inode;

fail:
126
	trace_f2fs_new_inode(inode, err);
127
	make_bad_inode(inode);
128
	if (nid_free)
129
		set_inode_flag(inode, FI_FREE_NID);
130
	iput(inode);
131
	return ERR_PTR(err);
C
Chao Yu 已提交
132 133 134 135 136 137 138 139 140 141
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);
142 143 144 145
}

static int is_multimedia_file(const unsigned char *s, const char *sub)
{
146 147
	size_t slen = strlen(s);
	size_t sublen = strlen(sub);
148
	int i;
149

C
Chao Yu 已提交
150 151
	/*
	 * filename format of multimedia file should be defined as:
152
	 * "filename + '.' + extension + (optional: '.' + temp extension)".
C
Chao Yu 已提交
153 154 155 156
	 */
	if (slen < sublen + 2)
		return 0;

157 158 159 160 161 162
	for (i = 1; i < slen - sublen; i++) {
		if (s[i] != '.')
			continue;
		if (!strncasecmp(s + i + 1, sub, sublen))
			return 1;
	}
163

164
	return 0;
165 166
}

J
Jaegeuk Kim 已提交
167
/*
168 169
 * Set multimedia files as cold files for hot/cold data separation
 */
170
static inline void set_cold_files(struct f2fs_sb_info *sbi, struct inode *inode,
171 172 173 174 175 176 177
		const unsigned char *name)
{
	int i;
	__u8 (*extlist)[8] = sbi->raw_super->extension_list;

	int count = le32_to_cpu(sbi->raw_super->extension_count);
	for (i = 0; i < count; i++) {
178
		if (is_multimedia_file(name, extlist[i])) {
179
			file_set_cold(inode);
180 181 182 183 184 185 186 187
			break;
		}
	}
}

static int f2fs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
						bool excl)
{
188
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
189 190
	struct inode *inode;
	nid_t ino = 0;
191
	int err;
192

193 194 195
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
196 197 198 199
	err = dquot_initialize(dir);
	if (err)
		return err;

200 201 202 203 204
	inode = f2fs_new_inode(dir, mode);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

	if (!test_opt(sbi, DISABLE_EXT_IDENTIFY))
205
		set_cold_files(sbi, inode, dentry->d_name.name);
206 207 208 209 210 211

	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;

212
	f2fs_lock_op(sbi);
213 214 215
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
216
	f2fs_unlock_op(sbi);
217 218 219

	alloc_nid_done(sbi, ino);

220
	d_instantiate(dentry, inode);
221
	unlock_new_inode(inode);
J
Jaegeuk Kim 已提交
222 223 224

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
225 226

	f2fs_balance_fs(sbi, true);
227 228
	return 0;
out:
229
	handle_failed_inode(inode);
230 231 232 233 234 235
	return err;
}

static int f2fs_link(struct dentry *old_dentry, struct inode *dir,
		struct dentry *dentry)
{
236
	struct inode *inode = d_inode(old_dentry);
237
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
238
	int err;
239

240 241 242
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

243 244 245
	err = fscrypt_prepare_link(old_dentry, dir, dentry);
	if (err)
		return err;
246

C
Chao Yu 已提交
247 248 249 250 251
	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 已提交
252 253 254 255
	err = dquot_initialize(dir);
	if (err)
		return err;

J
Jaegeuk Kim 已提交
256
	f2fs_balance_fs(sbi, true);
257

258
	inode->i_ctime = current_time(inode);
J
Jaegeuk Kim 已提交
259
	ihold(inode);
260

261
	set_inode_flag(inode, FI_INC_LINK);
262
	f2fs_lock_op(sbi);
263 264 265
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
266
	f2fs_unlock_op(sbi);
267 268

	d_instantiate(dentry, inode);
J
Jaegeuk Kim 已提交
269 270 271

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
272 273
	return 0;
out:
274
	clear_inode_flag(inode, FI_INC_LINK);
275
	iput(inode);
276
	f2fs_unlock_op(sbi);
277 278 279 280 281 282
	return err;
}

struct dentry *f2fs_get_parent(struct dentry *child)
{
	struct qstr dotdot = QSTR_INIT("..", 2);
283 284 285 286 287
	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);
288
		return ERR_PTR(-ENOENT);
289
	}
290
	return d_obtain_alias(f2fs_iget(child->d_sb, ino));
291 292
}

293 294 295 296 297 298 299 300 301
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;

302 303 304 305 306 307 308
	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;
	}

309 310 311 312
	err = dquot_initialize(dir);
	if (err)
		return err;

J
Jaegeuk Kim 已提交
313
	f2fs_balance_fs(sbi, true);
314

315 316 317 318 319 320
	f2fs_lock_op(sbi);

	de = f2fs_find_entry(dir, &dot, &page);
	if (de) {
		f2fs_dentry_kunmap(dir, page);
		f2fs_put_page(page, 0);
321 322 323
	} else if (IS_ERR(page)) {
		err = PTR_ERR(page);
		goto out;
324 325 326 327 328 329 330 331 332 333
	} else {
		err = __f2fs_add_link(dir, &dot, NULL, dir->i_ino, S_IFDIR);
		if (err)
			goto out;
	}

	de = f2fs_find_entry(dir, &dotdot, &page);
	if (de) {
		f2fs_dentry_kunmap(dir, page);
		f2fs_put_page(page, 0);
334 335
	} else if (IS_ERR(page)) {
		err = PTR_ERR(page);
336 337 338 339
	} else {
		err = __f2fs_add_link(dir, &dotdot, NULL, pino, S_IFDIR);
	}
out:
340
	if (!err)
341
		clear_inode_flag(dir, FI_INLINE_DOTS);
342 343 344 345 346

	f2fs_unlock_op(sbi);
	return err;
}

347 348 349 350 351 352
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 已提交
353 354
	struct dentry *new;
	nid_t ino = -1;
355
	int err = 0;
356
	unsigned int root_ino = F2FS_ROOT_INO(F2FS_I_SB(dir));
357

C
Chao Yu 已提交
358 359
	trace_f2fs_lookup_start(dir, dentry, flags);

360
	if (f2fs_encrypted_inode(dir)) {
C
Chao Yu 已提交
361
		err = fscrypt_get_encryption_info(dir);
362 363 364 365 366 367 368 369 370

		/*
		 * DCACHE_ENCRYPTED_WITH_KEY is set if the dentry is
		 * created while the directory was encrypted and we
		 * don't have access to the key.
		 */
		if (fscrypt_has_encryption_key(dir))
			fscrypt_set_encrypted_dentry(dentry);
		fscrypt_set_d_op(dentry);
C
Chao Yu 已提交
371 372
		if (err && err != -ENOKEY)
			goto out;
373 374
	}

C
Chao Yu 已提交
375 376 377 378
	if (dentry->d_name.len > F2FS_NAME_LEN) {
		err = -ENAMETOOLONG;
		goto out;
	}
379 380

	de = f2fs_find_entry(dir, &dentry->d_name, &page);
J
Jaegeuk Kim 已提交
381
	if (!de) {
C
Chao Yu 已提交
382 383 384 385 386
		if (IS_ERR(page)) {
			err = PTR_ERR(page);
			goto out;
		}
		goto out_splice;
J
Jaegeuk Kim 已提交
387
	}
388

J
Jaegeuk Kim 已提交
389 390 391
	ino = le32_to_cpu(de->ino);
	f2fs_dentry_kunmap(dir, page);
	f2fs_put_page(page, 0);
392

J
Jaegeuk Kim 已提交
393
	inode = f2fs_iget(dir->i_sb, ino);
C
Chao Yu 已提交
394 395 396 397
	if (IS_ERR(inode)) {
		err = PTR_ERR(inode);
		goto out;
	}
398

399 400 401
	if ((dir->i_ino == root_ino) && f2fs_has_inline_dots(dir)) {
		err = __recover_dot_dentries(dir, root_ino);
		if (err)
C
Chao Yu 已提交
402
			goto out_iput;
403 404
	}

405
	if (f2fs_has_inline_dots(inode)) {
J
Jaegeuk Kim 已提交
406
		err = __recover_dot_dentries(inode, dir->i_ino);
407
		if (err)
C
Chao Yu 已提交
408
			goto out_iput;
409
	}
D
Dan Carpenter 已提交
410 411 412
	if (f2fs_encrypted_inode(dir) &&
	    (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) &&
	    !fscrypt_has_permitted_context(dir, inode)) {
413 414 415 416
		f2fs_msg(inode->i_sb, KERN_WARNING,
			 "Inconsistent encryption contexts: %lu/%lu",
			 dir->i_ino, inode->i_ino);
		err = -EPERM;
C
Chao Yu 已提交
417
		goto out_iput;
418
	}
C
Chao Yu 已提交
419 420 421 422 423 424 425
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:
426
	iput(inode);
C
Chao Yu 已提交
427 428
out:
	trace_f2fs_lookup_end(dir, dentry, ino, err);
429
	return ERR_PTR(err);
430 431 432 433
}

static int f2fs_unlink(struct inode *dir, struct dentry *dentry)
{
434
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
435
	struct inode *inode = d_inode(dentry);
436 437 438 439
	struct f2fs_dir_entry *de;
	struct page *page;
	int err = -ENOENT;

440
	trace_f2fs_unlink_enter(dir, dentry);
441

442 443 444
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
445
	err = dquot_initialize(dir);
J
Jaegeuk Kim 已提交
446 447 448
	if (err)
		return err;
	err = dquot_initialize(inode);
C
Chao Yu 已提交
449 450 451
	if (err)
		return err;

452
	de = f2fs_find_entry(dir, &dentry->d_name, &page);
453 454 455
	if (!de) {
		if (IS_ERR(page))
			err = PTR_ERR(page);
456
		goto fail;
457
	}
458

J
Jaegeuk Kim 已提交
459
	f2fs_balance_fs(sbi, true);
460

461
	f2fs_lock_op(sbi);
J
Jaegeuk Kim 已提交
462
	err = acquire_orphan_inode(sbi);
463
	if (err) {
464
		f2fs_unlock_op(sbi);
465
		f2fs_dentry_kunmap(dir, page);
466 467 468
		f2fs_put_page(page, 0);
		goto fail;
	}
469
	f2fs_delete_entry(de, page, dir, inode);
470
	f2fs_unlock_op(sbi);
471

J
Jaegeuk Kim 已提交
472 473
	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
474
fail:
475
	trace_f2fs_unlink_exit(inode, err);
476 477 478
	return err;
}

479
static const char *f2fs_get_link(struct dentry *dentry,
480 481
				 struct inode *inode,
				 struct delayed_call *done)
482
{
483
	const char *link = page_get_link(dentry, inode, done);
484 485
	if (!IS_ERR(link) && !*link) {
		/* this is broken symlink case */
486 487
		do_delayed_call(done);
		clear_delayed_call(done);
488
		link = ERR_PTR(-ENOENT);
489
	}
490
	return link;
491 492
}

493 494 495
static int f2fs_symlink(struct inode *dir, struct dentry *dentry,
					const char *symname)
{
496
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
497
	struct inode *inode;
498
	size_t len = strlen(symname);
499 500
	struct fscrypt_str disk_link = FSTR_INIT((char *)symname, len + 1);
	struct fscrypt_symlink_data *sd = NULL;
501
	int err;
502

503 504 505
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

506
	if (f2fs_encrypted_inode(dir)) {
507
		err = fscrypt_get_encryption_info(dir);
508 509 510
		if (err)
			return err;

511
		if (!fscrypt_has_encryption_key(dir))
512
			return -ENOKEY;
513

514 515
		disk_link.len = (fscrypt_fname_encrypted_size(dir, len) +
				sizeof(struct fscrypt_symlink_data));
516 517 518
	}

	if (disk_link.len > dir->i_sb->s_blocksize)
519 520
		return -ENAMETOOLONG;

C
Chao Yu 已提交
521 522 523 524
	err = dquot_initialize(dir);
	if (err)
		return err;

525 526 527 528
	inode = f2fs_new_inode(dir, S_IFLNK | S_IRWXUGO);
	if (IS_ERR(inode))
		return PTR_ERR(inode);

529 530 531 532
	if (f2fs_encrypted_inode(inode))
		inode->i_op = &f2fs_encrypted_symlink_inode_operations;
	else
		inode->i_op = &f2fs_symlink_inode_operations;
533
	inode_nohighmem(inode);
534 535
	inode->i_mapping->a_ops = &f2fs_dblock_aops;

536
	f2fs_lock_op(sbi);
537 538 539
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
540
	f2fs_unlock_op(sbi);
541 542
	alloc_nid_done(sbi, inode->i_ino);

543
	if (f2fs_encrypted_inode(inode)) {
544
		struct qstr istr = QSTR_INIT(symname, len);
545
		struct fscrypt_str ostr;
546

547 548 549
		sd = kzalloc(disk_link.len, GFP_NOFS);
		if (!sd) {
			err = -ENOMEM;
550
			goto err_out;
551
		}
552

553
		err = fscrypt_get_encryption_info(inode);
554 555 556
		if (err)
			goto err_out;

557
		if (!fscrypt_has_encryption_key(inode)) {
558
			err = -ENOKEY;
559 560 561
			goto err_out;
		}

562 563
		ostr.name = sd->encrypted_path;
		ostr.len = disk_link.len;
564
		err = fscrypt_fname_usr_to_disk(inode, &istr, &ostr);
565
		if (err)
566
			goto err_out;
567 568 569

		sd->len = cpu_to_le16(ostr.len);
		disk_link.name = (char *)sd;
570 571
	}

572
	err = page_symlink(inode, disk_link.name, disk_link.len);
573 574

err_out:
575 576
	d_instantiate(dentry, inode);
	unlock_new_inode(inode);
J
Jaegeuk Kim 已提交
577

578 579 580 581 582 583 584 585 586
	/*
	 * 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 已提交
587
	if (!err) {
588 589
		filemap_write_and_wait_range(inode->i_mapping, 0,
							disk_link.len - 1);
590

C
Chao Yu 已提交
591 592 593 594 595
		if (IS_DIRSYNC(dir))
			f2fs_sync_fs(sbi->sb, 1);
	} else {
		f2fs_unlink(dir, dentry);
	}
596 597

	kfree(sd);
598 599

	f2fs_balance_fs(sbi, true);
600 601
	return err;
out:
602
	handle_failed_inode(inode);
603 604 605 606 607
	return err;
}

static int f2fs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
{
608
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
609
	struct inode *inode;
610
	int err;
611

612 613 614
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
615 616 617 618
	err = dquot_initialize(dir);
	if (err)
		return err;

619 620
	inode = f2fs_new_inode(dir, S_IFDIR | mode);
	if (IS_ERR(inode))
621
		return PTR_ERR(inode);
622 623 624 625

	inode->i_op = &f2fs_dir_inode_operations;
	inode->i_fop = &f2fs_dir_operations;
	inode->i_mapping->a_ops = &f2fs_dblock_aops;
626
	mapping_set_gfp_mask(inode->i_mapping, GFP_F2FS_HIGH_ZERO);
627

628
	set_inode_flag(inode, FI_INC_LINK);
629
	f2fs_lock_op(sbi);
630 631 632
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out_fail;
633
	f2fs_unlock_op(sbi);
634 635 636 637 638 639

	alloc_nid_done(sbi, inode->i_ino);

	d_instantiate(dentry, inode);
	unlock_new_inode(inode);

J
Jaegeuk Kim 已提交
640 641
	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
642 643

	f2fs_balance_fs(sbi, true);
644 645 646
	return 0;

out_fail:
647
	clear_inode_flag(inode, FI_INC_LINK);
648
	handle_failed_inode(inode);
649 650 651 652 653
	return err;
}

static int f2fs_rmdir(struct inode *dir, struct dentry *dentry)
{
654
	struct inode *inode = d_inode(dentry);
655 656 657 658 659 660 661 662
	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)
{
663
	struct f2fs_sb_info *sbi = F2FS_I_SB(dir);
664 665 666
	struct inode *inode;
	int err = 0;

667 668 669
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

C
Chao Yu 已提交
670 671 672 673
	err = dquot_initialize(dir);
	if (err)
		return err;

674 675 676 677 678 679 680
	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;

681
	f2fs_lock_op(sbi);
682 683 684
	err = f2fs_add_link(dentry, inode);
	if (err)
		goto out;
685
	f2fs_unlock_op(sbi);
686 687

	alloc_nid_done(sbi, inode->i_ino);
J
Jaegeuk Kim 已提交
688

689 690
	d_instantiate(dentry, inode);
	unlock_new_inode(inode);
J
Jaegeuk Kim 已提交
691 692 693

	if (IS_DIRSYNC(dir))
		f2fs_sync_fs(sbi->sb, 1);
694 695

	f2fs_balance_fs(sbi, true);
696 697
	return 0;
out:
698
	handle_failed_inode(inode);
699 700 701
	return err;
}

C
Chao Yu 已提交
702 703 704 705 706 707 708
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 已提交
709 710 711 712
	err = dquot_initialize(dir);
	if (err)
		return err;

C
Chao Yu 已提交
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
	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);
	err = acquire_orphan_inode(sbi);
	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.
	 */
739
	add_orphan_inode(inode);
C
Chao Yu 已提交
740 741 742
	alloc_nid_done(sbi, inode->i_ino);

	if (whiteout) {
743
		f2fs_i_links_write(inode, false);
C
Chao Yu 已提交
744 745 746 747
		*whiteout = inode;
	} else {
		d_tmpfile(dentry, inode);
	}
748 749
	/* link_count was changed by d_tmpfile as well. */
	f2fs_unlock_op(sbi);
C
Chao Yu 已提交
750
	unlock_new_inode(inode);
751 752

	f2fs_balance_fs(sbi, true);
C
Chao Yu 已提交
753 754 755 756 757 758 759 760 761 762 763
	return 0;

release_out:
	release_orphan_inode(sbi);
out:
	handle_failed_inode(inode);
	return err;
}

static int f2fs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
{
764 765 766
	if (unlikely(f2fs_cp_error(F2FS_I_SB(dir))))
		return -EIO;

767
	if (f2fs_encrypted_inode(dir)) {
768
		int err = fscrypt_get_encryption_info(dir);
769 770 771 772
		if (err)
			return err;
	}

C
Chao Yu 已提交
773 774 775 776 777
	return __f2fs_tmpfile(dir, dentry, mode, NULL);
}

static int f2fs_create_whiteout(struct inode *dir, struct inode **whiteout)
{
778 779 780
	if (unlikely(f2fs_cp_error(F2FS_I_SB(dir))))
		return -EIO;

C
Chao Yu 已提交
781 782 783
	return __f2fs_tmpfile(dir, NULL, S_IFCHR | WHITEOUT_MODE, whiteout);
}

784
static int f2fs_rename(struct inode *old_dir, struct dentry *old_dentry,
C
Chao Yu 已提交
785 786
			struct inode *new_dir, struct dentry *new_dentry,
			unsigned int flags)
787
{
788
	struct f2fs_sb_info *sbi = F2FS_I_SB(old_dir);
789 790
	struct inode *old_inode = d_inode(old_dentry);
	struct inode *new_inode = d_inode(new_dentry);
C
Chao Yu 已提交
791
	struct inode *whiteout = NULL;
792
	struct page *old_dir_page;
C
Chao Yu 已提交
793
	struct page *old_page, *new_page = NULL;
794 795 796
	struct f2fs_dir_entry *old_dir_entry = NULL;
	struct f2fs_dir_entry *old_entry;
	struct f2fs_dir_entry *new_entry;
797
	bool is_old_inline = f2fs_has_inline_dentry(old_dir);
798
	int err = -ENOENT;
799

800 801 802
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

803 804 805 806 807 808
	if ((f2fs_encrypted_inode(old_dir) &&
			!fscrypt_has_encryption_key(old_dir)) ||
			(f2fs_encrypted_inode(new_dir) &&
			!fscrypt_has_encryption_key(new_dir)))
		return -ENOKEY;

809
	if ((old_dir != new_dir) && f2fs_encrypted_inode(new_dir) &&
810
			!fscrypt_has_permitted_context(new_dir, old_inode)) {
811 812 813 814
		err = -EPERM;
		goto out;
	}

C
Chao Yu 已提交
815 816 817 818 819
	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 已提交
820 821 822 823 824 825 826 827
	err = dquot_initialize(old_dir);
	if (err)
		goto out;

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

J
Jaegeuk Kim 已提交
828 829 830 831 832 833
	if (new_inode) {
		err = dquot_initialize(new_inode);
		if (err)
			goto out;
	}

834
	old_entry = f2fs_find_entry(old_dir, &old_dentry->d_name, &old_page);
835 836 837
	if (!old_entry) {
		if (IS_ERR(old_page))
			err = PTR_ERR(old_page);
838
		goto out;
839
	}
840 841 842

	if (S_ISDIR(old_inode->i_mode)) {
		old_dir_entry = f2fs_parent_dir(old_inode, &old_dir_page);
843
		if (!old_dir_entry) {
844 845
			if (IS_ERR(old_dir_page))
				err = PTR_ERR(old_dir_page);
846
			goto out_old;
847
		}
848 849
	}

C
Chao Yu 已提交
850 851 852 853 854 855
	if (flags & RENAME_WHITEOUT) {
		err = f2fs_create_whiteout(old_dir, &whiteout);
		if (err)
			goto out_dir;
	}

856 857 858 859
	if (new_inode) {

		err = -ENOTEMPTY;
		if (old_dir_entry && !f2fs_empty_dir(new_inode))
C
Chao Yu 已提交
860
			goto out_whiteout;
861 862 863 864

		err = -ENOENT;
		new_entry = f2fs_find_entry(new_dir, &new_dentry->d_name,
						&new_page);
865 866 867
		if (!new_entry) {
			if (IS_ERR(new_page))
				err = PTR_ERR(new_page);
C
Chao Yu 已提交
868
			goto out_whiteout;
869
		}
870

J
Jaegeuk Kim 已提交
871
		f2fs_balance_fs(sbi, true);
872

873 874
		f2fs_lock_op(sbi);

J
Jaegeuk Kim 已提交
875 876 877 878
		err = acquire_orphan_inode(sbi);
		if (err)
			goto put_out_dir;

879 880
		f2fs_set_link(new_dir, new_entry, new_page, old_inode);

881
		new_inode->i_ctime = current_time(new_inode);
882
		down_write(&F2FS_I(new_inode)->i_sem);
883
		if (old_dir_entry)
884 885
			f2fs_i_links_write(new_inode, false);
		f2fs_i_links_write(new_inode, false);
886 887
		up_write(&F2FS_I(new_inode)->i_sem);

888
		if (!new_inode->i_nlink)
889
			add_orphan_inode(new_inode);
J
Jaegeuk Kim 已提交
890 891
		else
			release_orphan_inode(sbi);
892
	} else {
J
Jaegeuk Kim 已提交
893
		f2fs_balance_fs(sbi, true);
894

895 896
		f2fs_lock_op(sbi);

897
		err = f2fs_add_link(new_dentry, old_inode);
898 899
		if (err) {
			f2fs_unlock_op(sbi);
C
Chao Yu 已提交
900
			goto out_whiteout;
901
		}
902

903
		if (old_dir_entry)
904
			f2fs_i_links_write(new_dir, true);
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919

		/*
		 * 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) {
920 921 922
				err = -ENOENT;
				if (IS_ERR(old_page))
					err = PTR_ERR(old_page);
923 924 925 926
				f2fs_unlock_op(sbi);
				goto out_whiteout;
			}
		}
927 928
	}

929
	down_write(&F2FS_I(old_inode)->i_sem);
930 931 932 933
	if (!old_dir_entry || whiteout)
		file_lost_pino(old_inode);
	else
		F2FS_I(old_inode)->i_pino = new_dir->i_ino;
934 935
	up_write(&F2FS_I(old_inode)->i_sem);

936
	old_inode->i_ctime = current_time(old_inode);
937
	f2fs_mark_inode_dirty_sync(old_inode, false);
938

939
	f2fs_delete_entry(old_entry, old_page, old_dir, NULL);
940

C
Chao Yu 已提交
941 942
	if (whiteout) {
		whiteout->i_state |= I_LINKABLE;
943
		set_inode_flag(whiteout, FI_INC_LINK);
C
Chao Yu 已提交
944 945 946 947 948 949 950
		err = f2fs_add_link(old_dentry, whiteout);
		if (err)
			goto put_out_dir;
		whiteout->i_state &= ~I_LINKABLE;
		iput(whiteout);
	}

951
	if (old_dir_entry) {
C
Chao Yu 已提交
952
		if (old_dir != new_dir && !whiteout) {
953 954 955
			f2fs_set_link(old_inode, old_dir_entry,
						old_dir_page, new_dir);
		} else {
956
			f2fs_dentry_kunmap(old_inode, old_dir_page);
957 958
			f2fs_put_page(old_dir_page, 0);
		}
959
		f2fs_i_links_write(old_dir, false);
960 961
	}

962
	f2fs_unlock_op(sbi);
J
Jaegeuk Kim 已提交
963 964 965

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

J
Jaegeuk Kim 已提交
968
put_out_dir:
969
	f2fs_unlock_op(sbi);
C
Chao Yu 已提交
970 971 972 973 974 975 976
	if (new_page) {
		f2fs_dentry_kunmap(new_dir, new_page);
		f2fs_put_page(new_page, 0);
	}
out_whiteout:
	if (whiteout)
		iput(whiteout);
977 978
out_dir:
	if (old_dir_entry) {
979
		f2fs_dentry_kunmap(old_inode, old_dir_page);
980 981 982
		f2fs_put_page(old_dir_page, 0);
	}
out_old:
983
	f2fs_dentry_kunmap(old_dir, old_page);
984 985 986 987 988
	f2fs_put_page(old_page, 0);
out:
	return err;
}

C
Chao Yu 已提交
989 990 991
static int f2fs_cross_rename(struct inode *old_dir, struct dentry *old_dentry,
			     struct inode *new_dir, struct dentry *new_dentry)
{
992
	struct f2fs_sb_info *sbi = F2FS_I_SB(old_dir);
993 994
	struct inode *old_inode = d_inode(old_dentry);
	struct inode *new_inode = d_inode(new_dentry);
C
Chao Yu 已提交
995 996 997 998 999 1000
	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;
1001

1002 1003 1004
	if (unlikely(f2fs_cp_error(sbi)))
		return -EIO;

1005 1006 1007 1008 1009
	if ((f2fs_encrypted_inode(old_dir) &&
			!fscrypt_has_encryption_key(old_dir)) ||
			(f2fs_encrypted_inode(new_dir) &&
			!fscrypt_has_encryption_key(new_dir)))
		return -ENOKEY;
C
Chao Yu 已提交
1010

1011
	if ((f2fs_encrypted_inode(old_dir) || f2fs_encrypted_inode(new_dir)) &&
1012 1013 1014
			(old_dir != new_dir) &&
			(!fscrypt_has_permitted_context(new_dir, old_inode) ||
			 !fscrypt_has_permitted_context(old_dir, new_inode)))
1015 1016
		return -EPERM;

C
Chao Yu 已提交
1017 1018 1019 1020 1021 1022 1023 1024
	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 已提交
1025 1026 1027 1028 1029 1030 1031 1032
	err = dquot_initialize(old_dir);
	if (err)
		goto out;

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

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

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

	/* 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);
1052
			if (!old_dir_entry) {
1053 1054
				if (IS_ERR(old_dir_page))
					err = PTR_ERR(old_dir_page);
C
Chao Yu 已提交
1055
				goto out_new;
1056
			}
C
Chao Yu 已提交
1057 1058 1059 1060 1061
		}

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

	/*
	 * 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;
1080 1081
		if ((old_nlink > 0 && old_dir->i_nlink >= F2FS_LINK_MAX) ||
			(new_nlink > 0 && new_dir->i_nlink >= F2FS_LINK_MAX))
C
Chao Yu 已提交
1082 1083 1084
			goto out_new_dir;
	}

J
Jaegeuk Kim 已提交
1085
	f2fs_balance_fs(sbi, true);
1086

C
Chao Yu 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
	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);

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

	/* 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);

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

	f2fs_unlock_op(sbi);
J
Jaegeuk Kim 已提交
1128 1129 1130

	if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
		f2fs_sync_fs(sbi->sb, 1);
C
Chao Yu 已提交
1131 1132 1133
	return 0;
out_new_dir:
	if (new_dir_entry) {
1134
		f2fs_dentry_kunmap(new_inode, new_dir_page);
C
Chao Yu 已提交
1135 1136 1137 1138
		f2fs_put_page(new_dir_page, 0);
	}
out_old_dir:
	if (old_dir_entry) {
1139
		f2fs_dentry_kunmap(old_inode, old_dir_page);
C
Chao Yu 已提交
1140 1141 1142
		f2fs_put_page(old_dir_page, 0);
	}
out_new:
1143
	f2fs_dentry_kunmap(new_dir, new_page);
C
Chao Yu 已提交
1144 1145
	f2fs_put_page(new_page, 0);
out_old:
1146
	f2fs_dentry_kunmap(old_dir, old_page);
C
Chao Yu 已提交
1147 1148 1149 1150 1151 1152 1153 1154 1155
	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)
{
C
Chao Yu 已提交
1156
	if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
C
Chao Yu 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
		return -EINVAL;

	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 已提交
1167
	return f2fs_rename(old_dir, old_dentry, new_dir, new_dentry, flags);
C
Chao Yu 已提交
1168 1169
}

1170
static const char *f2fs_encrypted_get_link(struct dentry *dentry,
1171 1172
					   struct inode *inode,
					   struct delayed_call *done)
C
Chao Yu 已提交
1173
{
1174 1175
	struct page *cpage = NULL;
	char *caddr, *paddr = NULL;
1176 1177 1178
	struct fscrypt_str cstr = FSTR_INIT(NULL, 0);
	struct fscrypt_str pstr = FSTR_INIT(NULL, 0);
	struct fscrypt_symlink_data *sd;
1179 1180 1181
	u32 max_size = inode->i_sb->s_blocksize;
	int res;

1182 1183 1184
	if (!dentry)
		return ERR_PTR(-ECHILD);

1185
	res = fscrypt_get_encryption_info(inode);
1186 1187 1188 1189 1190
	if (res)
		return ERR_PTR(res);

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

	/* Symlink is encrypted */
1195
	sd = (struct fscrypt_symlink_data *)caddr;
1196
	cstr.name = sd->encrypted_path;
1197
	cstr.len = le16_to_cpu(sd->len);
1198 1199 1200 1201 1202 1203

	/* this is broken symlink case */
	if (unlikely(cstr.len == 0)) {
		res = -ENOENT;
		goto errout;
	}
1204

1205
	if ((cstr.len + sizeof(struct fscrypt_symlink_data) - 1) > max_size) {
1206 1207 1208 1209
		/* Symlink data on the disk is corrupted */
		res = -EIO;
		goto errout;
	}
1210
	res = fscrypt_fname_alloc_buffer(inode, cstr.len, &pstr);
1211 1212 1213
	if (res)
		goto errout;

1214
	res = fscrypt_fname_disk_to_usr(inode, 0, 0, &cstr, &pstr);
1215
	if (res)
1216 1217
		goto errout;

1218 1219 1220 1221 1222 1223
	/* this is broken symlink case */
	if (unlikely(pstr.name[0] == 0)) {
		res = -ENOENT;
		goto errout;
	}

1224 1225 1226
	paddr = pstr.name;

	/* Null-terminate the name */
1227
	paddr[pstr.len] = '\0';
1228

1229
	put_page(cpage);
1230 1231
	set_delayed_call(done, kfree_link, paddr);
	return paddr;
1232
errout:
1233
	fscrypt_fname_free_buffer(&pstr);
1234
	put_page(cpage);
1235
	return ERR_PTR(res);
C
Chao Yu 已提交
1236 1237
}

1238
const struct inode_operations f2fs_encrypted_symlink_inode_operations = {
1239
	.get_link       = f2fs_encrypted_get_link,
1240 1241
	.getattr	= f2fs_getattr,
	.setattr	= f2fs_setattr,
1242
#ifdef CONFIG_F2FS_FS_XATTR
1243
	.listxattr	= f2fs_listxattr,
1244
#endif
1245 1246
};

1247 1248 1249 1250 1251 1252 1253 1254 1255
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,
1256
	.rename		= f2fs_rename2,
C
Chao Yu 已提交
1257
	.tmpfile	= f2fs_tmpfile,
1258
	.getattr	= f2fs_getattr,
1259 1260
	.setattr	= f2fs_setattr,
	.get_acl	= f2fs_get_acl,
1261
	.set_acl	= f2fs_set_acl,
1262 1263 1264 1265 1266 1267
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};

const struct inode_operations f2fs_symlink_inode_operations = {
1268
	.get_link       = f2fs_get_link,
1269
	.getattr	= f2fs_getattr,
1270 1271 1272 1273 1274 1275 1276
	.setattr	= f2fs_setattr,
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};

const struct inode_operations f2fs_special_inode_operations = {
1277
	.getattr	= f2fs_getattr,
1278 1279
	.setattr        = f2fs_setattr,
	.get_acl	= f2fs_get_acl,
1280
	.set_acl	= f2fs_set_acl,
1281 1282 1283 1284
#ifdef CONFIG_F2FS_FS_XATTR
	.listxattr	= f2fs_listxattr,
#endif
};