4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
7 * Portions of this code from linux/fs/ext2/xattr.c
9 * Copyright (C) 2001-2003 Andreas Gruenbacher <agruen@suse.de>
11 * Fix by Harrison Xing <harrison@mountainviewdata.com>.
12 * Extended attributes for symlinks and special files added per
13 * suggestion of Luka Renko <luka.renko@hermes.si>.
14 * xattr consolidation Copyright (c) 2004 James Morris <jmorris@redhat.com>,
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License version 2 as
19 * published by the Free Software Foundation.
21 #include <linux/rwsem.h>
22 #include <linux/f2fs_fs.h>
23 #include <linux/security.h>
27 static size_t f2fs_xattr_generic_list(struct dentry *dentry, char *list,
28 size_t list_size, const char *name, size_t name_len, int type)
30 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
31 int total_len, prefix_len = 0;
32 const char *prefix = NULL;
35 case F2FS_XATTR_INDEX_USER:
36 if (!test_opt(sbi, XATTR_USER))
38 prefix = XATTR_USER_PREFIX;
39 prefix_len = XATTR_USER_PREFIX_LEN;
41 case F2FS_XATTR_INDEX_TRUSTED:
42 if (!capable(CAP_SYS_ADMIN))
44 prefix = XATTR_TRUSTED_PREFIX;
45 prefix_len = XATTR_TRUSTED_PREFIX_LEN;
47 case F2FS_XATTR_INDEX_SECURITY:
48 prefix = XATTR_SECURITY_PREFIX;
49 prefix_len = XATTR_SECURITY_PREFIX_LEN;
55 total_len = prefix_len + name_len + 1;
56 if (list && total_len <= list_size) {
57 memcpy(list, prefix, prefix_len);
58 memcpy(list + prefix_len, name, name_len);
59 list[prefix_len + name_len] = '\0';
64 static int f2fs_xattr_generic_get(struct dentry *dentry, const char *name,
65 void *buffer, size_t size, int type)
67 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
70 case F2FS_XATTR_INDEX_USER:
71 if (!test_opt(sbi, XATTR_USER))
74 case F2FS_XATTR_INDEX_TRUSTED:
75 if (!capable(CAP_SYS_ADMIN))
78 case F2FS_XATTR_INDEX_SECURITY:
83 if (strcmp(name, "") == 0)
85 return f2fs_getxattr(dentry->d_inode, type, name, buffer, size);
88 static int f2fs_xattr_generic_set(struct dentry *dentry, const char *name,
89 const void *value, size_t size, int flags, int type)
91 struct f2fs_sb_info *sbi = F2FS_SB(dentry->d_sb);
94 case F2FS_XATTR_INDEX_USER:
95 if (!test_opt(sbi, XATTR_USER))
98 case F2FS_XATTR_INDEX_TRUSTED:
99 if (!capable(CAP_SYS_ADMIN))
102 case F2FS_XATTR_INDEX_SECURITY:
107 if (strcmp(name, "") == 0)
110 return f2fs_setxattr(dentry->d_inode, type, name, value, size, NULL);
113 static size_t f2fs_xattr_advise_list(struct dentry *dentry, char *list,
114 size_t list_size, const char *name, size_t name_len, int type)
116 const char *xname = F2FS_SYSTEM_ADVISE_PREFIX;
119 if (type != F2FS_XATTR_INDEX_ADVISE)
122 size = strlen(xname) + 1;
123 if (list && size <= list_size)
124 memcpy(list, xname, size);
128 static int f2fs_xattr_advise_get(struct dentry *dentry, const char *name,
129 void *buffer, size_t size, int type)
131 struct inode *inode = dentry->d_inode;
133 if (strcmp(name, "") != 0)
136 *((char *)buffer) = F2FS_I(inode)->i_advise;
140 static int f2fs_xattr_advise_set(struct dentry *dentry, const char *name,
141 const void *value, size_t size, int flags, int type)
143 struct inode *inode = dentry->d_inode;
145 if (strcmp(name, "") != 0)
147 if (!inode_owner_or_capable(inode))
152 F2FS_I(inode)->i_advise |= *(char *)value;
156 #ifdef CONFIG_F2FS_FS_SECURITY
157 static int f2fs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
160 const struct xattr *xattr;
163 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
164 err = f2fs_setxattr(inode, F2FS_XATTR_INDEX_SECURITY,
165 xattr->name, xattr->value,
166 xattr->value_len, (struct page *)page);
173 int f2fs_init_security(struct inode *inode, struct inode *dir,
174 const struct qstr *qstr, struct page *ipage)
176 return security_inode_init_security(inode, dir, qstr,
177 &f2fs_initxattrs, ipage);
181 const struct xattr_handler f2fs_xattr_user_handler = {
182 .prefix = XATTR_USER_PREFIX,
183 .flags = F2FS_XATTR_INDEX_USER,
184 .list = f2fs_xattr_generic_list,
185 .get = f2fs_xattr_generic_get,
186 .set = f2fs_xattr_generic_set,
189 const struct xattr_handler f2fs_xattr_trusted_handler = {
190 .prefix = XATTR_TRUSTED_PREFIX,
191 .flags = F2FS_XATTR_INDEX_TRUSTED,
192 .list = f2fs_xattr_generic_list,
193 .get = f2fs_xattr_generic_get,
194 .set = f2fs_xattr_generic_set,
197 const struct xattr_handler f2fs_xattr_advise_handler = {
198 .prefix = F2FS_SYSTEM_ADVISE_PREFIX,
199 .flags = F2FS_XATTR_INDEX_ADVISE,
200 .list = f2fs_xattr_advise_list,
201 .get = f2fs_xattr_advise_get,
202 .set = f2fs_xattr_advise_set,
205 const struct xattr_handler f2fs_xattr_security_handler = {
206 .prefix = XATTR_SECURITY_PREFIX,
207 .flags = F2FS_XATTR_INDEX_SECURITY,
208 .list = f2fs_xattr_generic_list,
209 .get = f2fs_xattr_generic_get,
210 .set = f2fs_xattr_generic_set,
213 static const struct xattr_handler *f2fs_xattr_handler_map[] = {
214 [F2FS_XATTR_INDEX_USER] = &f2fs_xattr_user_handler,
215 #ifdef CONFIG_F2FS_FS_POSIX_ACL
216 [F2FS_XATTR_INDEX_POSIX_ACL_ACCESS] = &f2fs_xattr_acl_access_handler,
217 [F2FS_XATTR_INDEX_POSIX_ACL_DEFAULT] = &f2fs_xattr_acl_default_handler,
219 [F2FS_XATTR_INDEX_TRUSTED] = &f2fs_xattr_trusted_handler,
220 #ifdef CONFIG_F2FS_FS_SECURITY
221 [F2FS_XATTR_INDEX_SECURITY] = &f2fs_xattr_security_handler,
223 [F2FS_XATTR_INDEX_ADVISE] = &f2fs_xattr_advise_handler,
226 const struct xattr_handler *f2fs_xattr_handlers[] = {
227 &f2fs_xattr_user_handler,
228 #ifdef CONFIG_F2FS_FS_POSIX_ACL
229 &f2fs_xattr_acl_access_handler,
230 &f2fs_xattr_acl_default_handler,
232 &f2fs_xattr_trusted_handler,
233 #ifdef CONFIG_F2FS_FS_SECURITY
234 &f2fs_xattr_security_handler,
236 &f2fs_xattr_advise_handler,
240 static inline const struct xattr_handler *f2fs_xattr_handler(int name_index)
242 const struct xattr_handler *handler = NULL;
244 if (name_index > 0 && name_index < ARRAY_SIZE(f2fs_xattr_handler_map))
245 handler = f2fs_xattr_handler_map[name_index];
249 int f2fs_getxattr(struct inode *inode, int name_index, const char *name,
250 void *buffer, size_t buffer_size)
252 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
253 struct f2fs_inode_info *fi = F2FS_I(inode);
254 struct f2fs_xattr_entry *entry;
257 int error = 0, found = 0;
258 size_t value_len, name_len;
262 name_len = strlen(name);
264 if (!fi->i_xattr_nid)
267 page = get_node_page(sbi, fi->i_xattr_nid);
269 return PTR_ERR(page);
270 base_addr = page_address(page);
272 list_for_each_xattr(entry, base_addr) {
273 if (entry->e_name_index != name_index)
275 if (entry->e_name_len != name_len)
277 if (!memcmp(entry->e_name, name, name_len)) {
287 value_len = le16_to_cpu(entry->e_value_size);
289 if (buffer && value_len > buffer_size) {
295 char *pval = entry->e_name + entry->e_name_len;
296 memcpy(buffer, pval, value_len);
301 f2fs_put_page(page, 1);
305 ssize_t f2fs_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
307 struct inode *inode = dentry->d_inode;
308 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
309 struct f2fs_inode_info *fi = F2FS_I(inode);
310 struct f2fs_xattr_entry *entry;
314 size_t rest = buffer_size;
316 if (!fi->i_xattr_nid)
319 page = get_node_page(sbi, fi->i_xattr_nid);
321 return PTR_ERR(page);
322 base_addr = page_address(page);
324 list_for_each_xattr(entry, base_addr) {
325 const struct xattr_handler *handler =
326 f2fs_xattr_handler(entry->e_name_index);
332 size = handler->list(dentry, buffer, rest, entry->e_name,
333 entry->e_name_len, handler->flags);
334 if (buffer && size > rest) {
343 error = buffer_size - rest;
345 f2fs_put_page(page, 1);
349 int f2fs_setxattr(struct inode *inode, int name_index, const char *name,
350 const void *value, size_t value_len, struct page *ipage)
352 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
353 struct f2fs_inode_info *fi = F2FS_I(inode);
354 struct f2fs_xattr_header *header = NULL;
355 struct f2fs_xattr_entry *here, *last;
358 int error, found, free, newsize;
369 name_len = strlen(name);
371 if (name_len > F2FS_NAME_LEN || value_len > MAX_VALUE_LEN)
374 f2fs_balance_fs(sbi);
376 ilock = mutex_lock_op(sbi);
378 if (!fi->i_xattr_nid) {
379 /* Allocate new attribute block */
380 struct dnode_of_data dn;
382 if (!alloc_nid(sbi, &fi->i_xattr_nid)) {
386 set_new_dnode(&dn, inode, NULL, NULL, fi->i_xattr_nid);
387 mark_inode_dirty(inode);
389 page = new_node_page(&dn, XATTR_NODE_OFFSET, ipage);
391 alloc_nid_failed(sbi, fi->i_xattr_nid);
393 error = PTR_ERR(page);
397 alloc_nid_done(sbi, fi->i_xattr_nid);
398 base_addr = page_address(page);
399 header = XATTR_HDR(base_addr);
400 header->h_magic = cpu_to_le32(F2FS_XATTR_MAGIC);
401 header->h_refcount = cpu_to_le32(1);
403 /* The inode already has an extended attribute block. */
404 page = get_node_page(sbi, fi->i_xattr_nid);
406 error = PTR_ERR(page);
410 base_addr = page_address(page);
411 header = XATTR_HDR(base_addr);
414 if (le32_to_cpu(header->h_magic) != F2FS_XATTR_MAGIC) {
419 /* find entry with wanted name. */
421 list_for_each_xattr(here, base_addr) {
422 if (here->e_name_index != name_index)
424 if (here->e_name_len != name_len)
426 if (!memcmp(here->e_name, name, name_len)) {
434 while (!IS_XATTR_LAST_ENTRY(last))
435 last = XATTR_NEXT_ENTRY(last);
437 newsize = XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) +
438 name_len + value_len);
442 /* If value is NULL, it is remove operation.
443 * In case of update operation, we caculate free.
445 free = MIN_OFFSET - ((char *)last - (char *)header);
447 free = free - ENTRY_SIZE(here);
449 if (free < newsize) {
455 /* 2. Remove old entry */
457 /* If entry is found, remove old entry.
458 * If not found, remove operation is not needed.
460 struct f2fs_xattr_entry *next = XATTR_NEXT_ENTRY(here);
461 int oldsize = ENTRY_SIZE(here);
463 memmove(here, next, (char *)last - (char *)next);
464 last = (struct f2fs_xattr_entry *)((char *)last - oldsize);
465 memset(last, 0, oldsize);
468 /* 3. Write new entry */
470 /* Before we come here, old entry is removed.
471 * We just write new entry. */
472 memset(last, 0, newsize);
473 last->e_name_index = name_index;
474 last->e_name_len = name_len;
475 memcpy(last->e_name, name, name_len);
476 pval = last->e_name + name_len;
477 memcpy(pval, value, value_len);
478 last->e_value_size = cpu_to_le16(value_len);
481 set_page_dirty(page);
482 f2fs_put_page(page, 1);
484 if (is_inode_flag_set(fi, FI_ACL_MODE)) {
485 inode->i_mode = fi->i_acl_mode;
486 inode->i_ctime = CURRENT_TIME;
487 clear_inode_flag(fi, FI_ACL_MODE);
490 update_inode(inode, ipage);
492 update_inode_page(inode);
493 mutex_unlock_op(sbi, ilock);
497 f2fs_put_page(page, 1);
499 mutex_unlock_op(sbi, ilock);