xattr.c 14.7 KB
Newer Older
J
Jaegeuk Kim 已提交
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * fs/f2fs/xattr.c
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com/
 *
 * Portions of this code from linux/fs/ext2/xattr.c
 *
 * Copyright (C) 2001-2003 Andreas Gruenbacher <agruen@suse.de>
 *
 * Fix by Harrison Xing <harrison@mountainviewdata.com>.
 * Extended attributes for symlinks and special files added per
 *  suggestion of Luka Renko <luka.renko@hermes.si>.
 * xattr consolidation Copyright (c) 2004 James Morris <jmorris@redhat.com>,
 *  Red Hat Inc.
 *
 * 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/rwsem.h>
#include <linux/f2fs_fs.h>
23
#include <linux/security.h>
24
#include <linux/posix_acl_xattr.h>
25 26 27
#include "f2fs.h"
#include "xattr.h"

28 29 30
static size_t f2fs_xattr_generic_list(const struct xattr_handler *handler,
		struct dentry *dentry, char *list, size_t list_size,
		const char *name, size_t len)
31 32
{
	struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
33
	const char *prefix;
A
Andreas Gruenbacher 已提交
34
	int total_len, prefix_len;
35

36
	switch (handler->flags) {
37 38 39 40 41 42 43 44
	case F2FS_XATTR_INDEX_USER:
		if (!test_opt(sbi, XATTR_USER))
			return -EOPNOTSUPP;
		break;
	case F2FS_XATTR_INDEX_TRUSTED:
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;
		break;
45 46
	case F2FS_XATTR_INDEX_SECURITY:
		break;
47 48 49 50
	default:
		return -EINVAL;
	}

51 52
	prefix = xattr_prefix(handler);
	prefix_len = strlen(prefix);
J
Jaegeuk Kim 已提交
53
	total_len = prefix_len + len + 1;
54
	if (list && total_len <= list_size) {
55
		memcpy(list, prefix, prefix_len);
J
Jaegeuk Kim 已提交
56 57
		memcpy(list + prefix_len, name, len);
		list[prefix_len + len] = '\0';
58 59 60 61
	}
	return total_len;
}

62 63 64
static int f2fs_xattr_generic_get(const struct xattr_handler *handler,
		struct dentry *dentry, const char *name, void *buffer,
		size_t size)
65 66 67
{
	struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);

68
	switch (handler->flags) {
69 70 71 72 73 74 75 76
	case F2FS_XATTR_INDEX_USER:
		if (!test_opt(sbi, XATTR_USER))
			return -EOPNOTSUPP;
		break;
	case F2FS_XATTR_INDEX_TRUSTED:
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;
		break;
77 78
	case F2FS_XATTR_INDEX_SECURITY:
		break;
79 80 81
	default:
		return -EINVAL;
	}
82 83
	return f2fs_getxattr(d_inode(dentry), handler->flags, name,
			     buffer, size, NULL);
84 85
}

86 87 88
static int f2fs_xattr_generic_set(const struct xattr_handler *handler,
		struct dentry *dentry, const char *name, const void *value,
		size_t size, int flags)
89 90 91
{
	struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);

92
	switch (handler->flags) {
93 94 95 96 97 98 99 100
	case F2FS_XATTR_INDEX_USER:
		if (!test_opt(sbi, XATTR_USER))
			return -EOPNOTSUPP;
		break;
	case F2FS_XATTR_INDEX_TRUSTED:
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;
		break;
101 102
	case F2FS_XATTR_INDEX_SECURITY:
		break;
103 104 105
	default:
		return -EINVAL;
	}
106
	return f2fs_setxattr(d_inode(dentry), handler->flags, name,
107
					value, size, NULL, flags);
108 109
}

110 111 112
static size_t f2fs_xattr_advise_list(const struct xattr_handler *handler,
		struct dentry *dentry, char *list, size_t list_size,
		const char *name, size_t len)
J
Jaegeuk Kim 已提交
113
{
114
	const char *xname = F2FS_SYSTEM_ADVISE_NAME;
J
Jaegeuk Kim 已提交
115 116 117 118 119 120 121 122
	size_t size;

	size = strlen(xname) + 1;
	if (list && size <= list_size)
		memcpy(list, xname, size);
	return size;
}

123 124 125
static int f2fs_xattr_advise_get(const struct xattr_handler *handler,
		struct dentry *dentry, const char *name, void *buffer,
		size_t size)
J
Jaegeuk Kim 已提交
126
{
127
	struct inode *inode = d_inode(dentry);
J
Jaegeuk Kim 已提交
128

129 130
	if (buffer)
		*((char *)buffer) = F2FS_I(inode)->i_advise;
J
Jaegeuk Kim 已提交
131 132 133
	return sizeof(char);
}

134 135 136
static int f2fs_xattr_advise_set(const struct xattr_handler *handler,
		struct dentry *dentry, const char *name, const void *value,
		size_t size, int flags)
J
Jaegeuk Kim 已提交
137
{
138
	struct inode *inode = d_inode(dentry);
J
Jaegeuk Kim 已提交
139 140 141 142 143 144 145

	if (!inode_owner_or_capable(inode))
		return -EPERM;
	if (value == NULL)
		return -EINVAL;

	F2FS_I(inode)->i_advise |= *(char *)value;
146
	mark_inode_dirty(inode);
J
Jaegeuk Kim 已提交
147 148 149
	return 0;
}

150 151 152 153 154 155 156 157
#ifdef CONFIG_F2FS_FS_SECURITY
static int f2fs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
		void *page)
{
	const struct xattr *xattr;
	int err = 0;

	for (xattr = xattr_array; xattr->name != NULL; xattr++) {
158
		err = f2fs_setxattr(inode, F2FS_XATTR_INDEX_SECURITY,
159
				xattr->name, xattr->value,
160
				xattr->value_len, (struct page *)page, 0);
161 162 163 164 165 166 167 168 169 170 171 172 173 174
		if (err < 0)
			break;
	}
	return err;
}

int f2fs_init_security(struct inode *inode, struct inode *dir,
				const struct qstr *qstr, struct page *ipage)
{
	return security_inode_init_security(inode, dir, qstr,
				&f2fs_initxattrs, ipage);
}
#endif

175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
const struct xattr_handler f2fs_xattr_user_handler = {
	.prefix	= XATTR_USER_PREFIX,
	.flags	= F2FS_XATTR_INDEX_USER,
	.list	= f2fs_xattr_generic_list,
	.get	= f2fs_xattr_generic_get,
	.set	= f2fs_xattr_generic_set,
};

const struct xattr_handler f2fs_xattr_trusted_handler = {
	.prefix	= XATTR_TRUSTED_PREFIX,
	.flags	= F2FS_XATTR_INDEX_TRUSTED,
	.list	= f2fs_xattr_generic_list,
	.get	= f2fs_xattr_generic_get,
	.set	= f2fs_xattr_generic_set,
};

J
Jaegeuk Kim 已提交
191
const struct xattr_handler f2fs_xattr_advise_handler = {
192
	.name	= F2FS_SYSTEM_ADVISE_NAME,
J
Jaegeuk Kim 已提交
193 194 195 196 197 198
	.flags	= F2FS_XATTR_INDEX_ADVISE,
	.list   = f2fs_xattr_advise_list,
	.get    = f2fs_xattr_advise_get,
	.set    = f2fs_xattr_advise_set,
};

199 200 201 202 203 204 205 206
const struct xattr_handler f2fs_xattr_security_handler = {
	.prefix	= XATTR_SECURITY_PREFIX,
	.flags	= F2FS_XATTR_INDEX_SECURITY,
	.list	= f2fs_xattr_generic_list,
	.get	= f2fs_xattr_generic_get,
	.set	= f2fs_xattr_generic_set,
};

207 208 209
static const struct xattr_handler *f2fs_xattr_handler_map[] = {
	[F2FS_XATTR_INDEX_USER] = &f2fs_xattr_user_handler,
#ifdef CONFIG_F2FS_FS_POSIX_ACL
210 211
	[F2FS_XATTR_INDEX_POSIX_ACL_ACCESS] = &posix_acl_access_xattr_handler,
	[F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT] = &posix_acl_default_xattr_handler,
212 213
#endif
	[F2FS_XATTR_INDEX_TRUSTED] = &f2fs_xattr_trusted_handler,
214 215 216
#ifdef CONFIG_F2FS_FS_SECURITY
	[F2FS_XATTR_INDEX_SECURITY] = &f2fs_xattr_security_handler,
#endif
217 218 219 220 221 222
	[F2FS_XATTR_INDEX_ADVISE] = &f2fs_xattr_advise_handler,
};

const struct xattr_handler *f2fs_xattr_handlers[] = {
	&f2fs_xattr_user_handler,
#ifdef CONFIG_F2FS_FS_POSIX_ACL
223 224
	&posix_acl_access_xattr_handler,
	&posix_acl_default_xattr_handler,
225 226
#endif
	&f2fs_xattr_trusted_handler,
227 228 229
#ifdef CONFIG_F2FS_FS_SECURITY
	&f2fs_xattr_security_handler,
#endif
230 231 232 233
	&f2fs_xattr_advise_handler,
	NULL,
};

J
Jaegeuk Kim 已提交
234
static inline const struct xattr_handler *f2fs_xattr_handler(int index)
235 236 237
{
	const struct xattr_handler *handler = NULL;

J
Jaegeuk Kim 已提交
238 239
	if (index > 0 && index < ARRAY_SIZE(f2fs_xattr_handler_map))
		handler = f2fs_xattr_handler_map[index];
240 241 242
	return handler;
}

J
Jaegeuk Kim 已提交
243 244
static struct f2fs_xattr_entry *__find_xattr(void *base_addr, int index,
					size_t len, const char *name)
245 246 247 248
{
	struct f2fs_xattr_entry *entry;

	list_for_each_xattr(entry, base_addr) {
J
Jaegeuk Kim 已提交
249
		if (entry->e_name_index != index)
250
			continue;
J
Jaegeuk Kim 已提交
251
		if (entry->e_name_len != len)
252
			continue;
J
Jaegeuk Kim 已提交
253
		if (!memcmp(entry->e_name, name, len))
254 255 256 257 258
			break;
	}
	return entry;
}

J
Jaegeuk Kim 已提交
259 260
static void *read_all_xattrs(struct inode *inode, struct page *ipage)
{
261
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
J
Jaegeuk Kim 已提交
262 263 264 265 266 267
	struct f2fs_xattr_header *header;
	size_t size = PAGE_SIZE, inline_size = 0;
	void *txattr_addr;

	inline_size = inline_xattr_size(inode);

268
	txattr_addr = kzalloc(inline_size + size, GFP_F2FS_ZERO);
J
Jaegeuk Kim 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
	if (!txattr_addr)
		return NULL;

	/* read from inline xattr */
	if (inline_size) {
		struct page *page = NULL;
		void *inline_addr;

		if (ipage) {
			inline_addr = inline_xattr_addr(ipage);
		} else {
			page = get_node_page(sbi, inode->i_ino);
			if (IS_ERR(page))
				goto fail;
			inline_addr = inline_xattr_addr(page);
		}
		memcpy(txattr_addr, inline_addr, inline_size);
		f2fs_put_page(page, 1);
	}

	/* read from xattr node block */
	if (F2FS_I(inode)->i_xattr_nid) {
		struct page *xpage;
		void *xattr_addr;

		/* The inode already has an extended attribute block. */
		xpage = get_node_page(sbi, F2FS_I(inode)->i_xattr_nid);
		if (IS_ERR(xpage))
			goto fail;

		xattr_addr = page_address(xpage);
		memcpy(txattr_addr + inline_size, xattr_addr, PAGE_SIZE);
		f2fs_put_page(xpage, 1);
	}

	header = XATTR_HDR(txattr_addr);

	/* never been allocated xattrs */
	if (le32_to_cpu(header->h_magic) != F2FS_XATTR_MAGIC) {
		header->h_magic = cpu_to_le32(F2FS_XATTR_MAGIC);
		header->h_refcount = cpu_to_le32(1);
	}
	return txattr_addr;
fail:
	kzfree(txattr_addr);
	return NULL;
}

static inline int write_all_xattrs(struct inode *inode, __u32 hsize,
				void *txattr_addr, struct page *ipage)
{
320
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
J
Jaegeuk Kim 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
	size_t inline_size = 0;
	void *xattr_addr;
	struct page *xpage;
	nid_t new_nid = 0;
	int err;

	inline_size = inline_xattr_size(inode);

	if (hsize > inline_size && !F2FS_I(inode)->i_xattr_nid)
		if (!alloc_nid(sbi, &new_nid))
			return -ENOSPC;

	/* write to inline xattr */
	if (inline_size) {
		struct page *page = NULL;
		void *inline_addr;

		if (ipage) {
			inline_addr = inline_xattr_addr(ipage);
340
			f2fs_wait_on_page_writeback(ipage, NODE);
J
Jaegeuk Kim 已提交
341 342 343 344 345 346 347
		} else {
			page = get_node_page(sbi, inode->i_ino);
			if (IS_ERR(page)) {
				alloc_nid_failed(sbi, new_nid);
				return PTR_ERR(page);
			}
			inline_addr = inline_xattr_addr(page);
348
			f2fs_wait_on_page_writeback(page, NODE);
J
Jaegeuk Kim 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
		}
		memcpy(inline_addr, txattr_addr, inline_size);
		f2fs_put_page(page, 1);

		/* no need to use xattr node block */
		if (hsize <= inline_size) {
			err = truncate_xattr_node(inode, ipage);
			alloc_nid_failed(sbi, new_nid);
			return err;
		}
	}

	/* write to xattr node block */
	if (F2FS_I(inode)->i_xattr_nid) {
		xpage = get_node_page(sbi, F2FS_I(inode)->i_xattr_nid);
		if (IS_ERR(xpage)) {
			alloc_nid_failed(sbi, new_nid);
			return PTR_ERR(xpage);
		}
368
		f2fs_bug_on(sbi, new_nid);
369
		f2fs_wait_on_page_writeback(xpage, NODE);
J
Jaegeuk Kim 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
	} else {
		struct dnode_of_data dn;
		set_new_dnode(&dn, inode, NULL, NULL, new_nid);
		xpage = new_node_page(&dn, XATTR_NODE_OFFSET, ipage);
		if (IS_ERR(xpage)) {
			alloc_nid_failed(sbi, new_nid);
			return PTR_ERR(xpage);
		}
		alloc_nid_done(sbi, new_nid);
	}

	xattr_addr = page_address(xpage);
	memcpy(xattr_addr, txattr_addr + inline_size, PAGE_SIZE -
						sizeof(struct node_footer));
	set_page_dirty(xpage);
	f2fs_put_page(xpage, 1);

	/* need to checkpoint during fsync */
	F2FS_I(inode)->xattr_ver = cur_cp_version(F2FS_CKPT(sbi));
	return 0;
}

J
Jaegeuk Kim 已提交
392
int f2fs_getxattr(struct inode *inode, int index, const char *name,
393
		void *buffer, size_t buffer_size, struct page *ipage)
394 395
{
	struct f2fs_xattr_entry *entry;
J
Jaegeuk Kim 已提交
396
	void *base_addr;
397
	int error = 0;
J
Jaegeuk Kim 已提交
398
	size_t size, len;
399 400 401

	if (name == NULL)
		return -EINVAL;
J
Jaegeuk Kim 已提交
402 403 404

	len = strlen(name);
	if (len > F2FS_NAME_LEN)
405
		return -ERANGE;
406

407
	base_addr = read_all_xattrs(inode, ipage);
J
Jaegeuk Kim 已提交
408 409
	if (!base_addr)
		return -ENOMEM;
410

J
Jaegeuk Kim 已提交
411
	entry = __find_xattr(base_addr, index, len, name);
412
	if (IS_XATTR_LAST_ENTRY(entry)) {
413 414 415 416
		error = -ENODATA;
		goto cleanup;
	}

J
Jaegeuk Kim 已提交
417
	size = le16_to_cpu(entry->e_value_size);
418

J
Jaegeuk Kim 已提交
419
	if (buffer && size > buffer_size) {
420 421 422 423 424 425
		error = -ERANGE;
		goto cleanup;
	}

	if (buffer) {
		char *pval = entry->e_name + entry->e_name_len;
J
Jaegeuk Kim 已提交
426
		memcpy(buffer, pval, size);
427
	}
J
Jaegeuk Kim 已提交
428
	error = size;
429 430

cleanup:
J
Jaegeuk Kim 已提交
431
	kzfree(base_addr);
432 433 434 435 436
	return error;
}

ssize_t f2fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
{
437
	struct inode *inode = d_inode(dentry);
438 439 440 441 442
	struct f2fs_xattr_entry *entry;
	void *base_addr;
	int error = 0;
	size_t rest = buffer_size;

J
Jaegeuk Kim 已提交
443 444 445
	base_addr = read_all_xattrs(inode, NULL);
	if (!base_addr)
		return -ENOMEM;
446 447 448 449 450 451 452 453 454

	list_for_each_xattr(entry, base_addr) {
		const struct xattr_handler *handler =
			f2fs_xattr_handler(entry->e_name_index);
		size_t size;

		if (!handler)
			continue;

455 456
		size = handler->list(handler, dentry, buffer, rest,
				     entry->e_name, entry->e_name_len);
457 458 459 460 461 462 463 464 465 466 467
		if (buffer && size > rest) {
			error = -ERANGE;
			goto cleanup;
		}

		if (buffer)
			buffer += size;
		rest -= size;
	}
	error = buffer_size - rest;
cleanup:
J
Jaegeuk Kim 已提交
468
	kzfree(base_addr);
469 470 471
	return error;
}

J
Jaegeuk Kim 已提交
472 473
static int __f2fs_setxattr(struct inode *inode, int index,
			const char *name, const void *value, size_t size,
474
			struct page *ipage, int flags)
475 476 477 478
{
	struct f2fs_inode_info *fi = F2FS_I(inode);
	struct f2fs_xattr_entry *here, *last;
	void *base_addr;
J
Jaegeuk Kim 已提交
479
	int found, newsize;
J
Jaegeuk Kim 已提交
480
	size_t len;
J
Jaegeuk Kim 已提交
481 482
	__u32 new_hsize;
	int error = -ENOMEM;
483 484 485 486 487

	if (name == NULL)
		return -EINVAL;

	if (value == NULL)
J
Jaegeuk Kim 已提交
488
		size = 0;
489

J
Jaegeuk Kim 已提交
490
	len = strlen(name);
N
Namjae Jeon 已提交
491

492
	if (len > F2FS_NAME_LEN)
493 494
		return -ERANGE;

495 496 497
	if (size > MAX_VALUE_LEN(inode))
		return -E2BIG;

J
Jaegeuk Kim 已提交
498 499 500
	base_addr = read_all_xattrs(inode, ipage);
	if (!base_addr)
		goto exit;
501 502

	/* find entry with wanted name. */
J
Jaegeuk Kim 已提交
503
	here = __find_xattr(base_addr, index, len, name);
504

505
	found = IS_XATTR_LAST_ENTRY(here) ? 0 : 1;
506

507 508 509 510 511 512 513 514 515
	if ((flags & XATTR_REPLACE) && !found) {
		error = -ENODATA;
		goto exit;
	} else if ((flags & XATTR_CREATE) && found) {
		error = -EEXIST;
		goto exit;
	}

	last = here;
516 517 518
	while (!IS_XATTR_LAST_ENTRY(last))
		last = XATTR_NEXT_ENTRY(last);

J
Jaegeuk Kim 已提交
519
	newsize = XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) + len + size);
520 521 522

	/* 1. Check space */
	if (value) {
J
Jaegeuk Kim 已提交
523 524 525
		int free;
		/*
		 * If value is NULL, it is remove operation.
A
arter97 已提交
526
		 * In case of update operation, we calculate free.
527
		 */
J
Jaegeuk Kim 已提交
528
		free = MIN_OFFSET(inode) - ((char *)last - (char *)base_addr);
529
		if (found)
530
			free = free + ENTRY_SIZE(here);
531

532
		if (unlikely(free < newsize)) {
533
			error = -ENOSPC;
J
Jaegeuk Kim 已提交
534
			goto exit;
535 536 537 538 539
		}
	}

	/* 2. Remove old entry */
	if (found) {
J
Jaegeuk Kim 已提交
540 541
		/*
		 * If entry is found, remove old entry.
542 543 544 545 546 547 548 549 550 551
		 * If not found, remove operation is not needed.
		 */
		struct f2fs_xattr_entry *next = XATTR_NEXT_ENTRY(here);
		int oldsize = ENTRY_SIZE(here);

		memmove(here, next, (char *)last - (char *)next);
		last = (struct f2fs_xattr_entry *)((char *)last - oldsize);
		memset(last, 0, oldsize);
	}

J
Jaegeuk Kim 已提交
552 553
	new_hsize = (char *)last - (char *)base_addr;

554 555
	/* 3. Write new entry */
	if (value) {
J
Jaegeuk Kim 已提交
556 557 558 559 560
		char *pval;
		/*
		 * Before we come here, old entry is removed.
		 * We just write new entry.
		 */
561
		memset(last, 0, newsize);
J
Jaegeuk Kim 已提交
562 563 564 565 566 567
		last->e_name_index = index;
		last->e_name_len = len;
		memcpy(last->e_name, name, len);
		pval = last->e_name + len;
		memcpy(pval, value, size);
		last->e_value_size = cpu_to_le16(size);
J
Jaegeuk Kim 已提交
568
		new_hsize += newsize;
569 570
	}

J
Jaegeuk Kim 已提交
571 572 573
	error = write_all_xattrs(inode, new_hsize, base_addr, ipage);
	if (error)
		goto exit;
574 575 576 577 578 579

	if (is_inode_flag_set(fi, FI_ACL_MODE)) {
		inode->i_mode = fi->i_acl_mode;
		inode->i_ctime = CURRENT_TIME;
		clear_inode_flag(fi, FI_ACL_MODE);
	}
580 581 582
	if (index == F2FS_XATTR_INDEX_ENCRYPTION &&
			!strcmp(name, F2FS_XATTR_NAME_ENCRYPTION_CONTEXT))
		f2fs_set_encrypted_inode(inode);
583

584 585 586 587
	if (ipage)
		update_inode(inode, ipage);
	else
		update_inode_page(inode);
N
Namjae Jeon 已提交
588
exit:
J
Jaegeuk Kim 已提交
589
	kzfree(base_addr);
590 591
	return error;
}
592

J
Jaegeuk Kim 已提交
593 594
int f2fs_setxattr(struct inode *inode, int index, const char *name,
				const void *value, size_t size,
595
				struct page *ipage, int flags)
596
{
597
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
598 599
	int err;

600 601 602 603
	/* this case is only from init_inode_metadata */
	if (ipage)
		return __f2fs_setxattr(inode, index, name, value,
						size, ipage, flags);
604 605
	f2fs_balance_fs(sbi);

606
	f2fs_lock_op(sbi);
607 608
	/* protect xattr_ver */
	down_write(&F2FS_I(inode)->i_sem);
609
	err = __f2fs_setxattr(inode, index, name, value, size, ipage, flags);
610
	up_write(&F2FS_I(inode)->i_sem);
611
	f2fs_unlock_op(sbi);
612 613 614

	return err;
}