2 * linux/fs/hfsplus/xattr_trusted.c
6 * Handler for storing security labels as extended attributes.
9 #include <linux/security.h>
10 #include <linux/nls.h>
12 #include "hfsplus_fs.h"
16 static int hfsplus_security_getxattr(const struct xattr_handler *handler,
17 struct dentry *dentry, const char *name,
18 void *buffer, size_t size)
20 return hfsplus_getxattr(dentry, name, buffer, size,
21 XATTR_SECURITY_PREFIX,
22 XATTR_SECURITY_PREFIX_LEN);
25 static int hfsplus_security_setxattr(const struct xattr_handler *handler,
26 struct dentry *dentry, const char *name,
27 const void *buffer, size_t size, int flags)
29 return hfsplus_setxattr(dentry, name, buffer, size, flags,
30 XATTR_SECURITY_PREFIX,
31 XATTR_SECURITY_PREFIX_LEN);
34 static int hfsplus_initxattrs(struct inode *inode,
35 const struct xattr *xattr_array,
38 const struct xattr *xattr;
42 xattr_name = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_ATTR_MAX_STRLEN + 1,
46 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
48 if (!strcmp(xattr->name, ""))
51 strcpy(xattr_name, XATTR_SECURITY_PREFIX);
53 XATTR_SECURITY_PREFIX_LEN, xattr->name);
55 XATTR_SECURITY_PREFIX_LEN + strlen(xattr->name), 0, 1);
57 err = __hfsplus_setxattr(inode, xattr_name,
58 xattr->value, xattr->value_len, 0);
66 int hfsplus_init_security(struct inode *inode, struct inode *dir,
67 const struct qstr *qstr)
69 return security_inode_init_security(inode, dir, qstr,
70 &hfsplus_initxattrs, NULL);
73 int hfsplus_init_inode_security(struct inode *inode,
75 const struct qstr *qstr)
79 err = hfsplus_init_posix_acl(inode, dir);
81 err = hfsplus_init_security(inode, dir, qstr);
85 const struct xattr_handler hfsplus_xattr_security_handler = {
86 .prefix = XATTR_SECURITY_PREFIX,
87 .get = hfsplus_security_getxattr,
88 .set = hfsplus_security_setxattr,