blob: ebade1f52451da7a31b9369730f7587030ee7b85 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/ext2/xattr_security.c
4 * Handler for storing security labels as extended attributes.
5 */
6
Al Virof7699f22012-03-23 16:45:51 -04007#include "ext2.h"
Stephen Smalley10f47e62005-09-09 13:01:39 -07008#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include "xattr.h"
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020012ext2_xattr_security_get(const struct xattr_handler *handler,
Al Virob2968212016-04-10 20:48:24 -040013 struct dentry *unused, struct inode *inode,
14 const char *name, void *buffer, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015{
Al Virob2968212016-04-10 20:48:24 -040016 return ext2_xattr_get(inode, EXT2_XATTR_INDEX_SECURITY, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 buffer, size);
18}
19
20static int
Andreas Gruenbacherd9a82a02015-10-04 19:18:51 +020021ext2_xattr_security_set(const struct xattr_handler *handler,
Christian Braunere65ce2a2021-01-21 14:19:27 +010022 struct user_namespace *mnt_userns,
Al Viro59301222016-05-27 10:19:30 -040023 struct dentry *unused, struct inode *inode,
24 const char *name, const void *value,
25 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Al Viro59301222016-05-27 10:19:30 -040027 return ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 value, size, flags);
29}
30
Rashika Kheria17cd48e2014-02-09 18:34:10 +053031static int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
32 void *fs_info)
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040033{
34 const struct xattr *xattr;
35 int err = 0;
36
37 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
38 err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
39 xattr->name, xattr->value,
40 xattr->value_len, 0);
41 if (err < 0)
42 break;
43 }
44 return err;
45}
46
Stephen Smalley10f47e62005-09-09 13:01:39 -070047int
Eric Paris2a7dba32011-02-01 11:05:39 -050048ext2_init_security(struct inode *inode, struct inode *dir,
49 const struct qstr *qstr)
Stephen Smalley10f47e62005-09-09 13:01:39 -070050{
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040051 return security_inode_init_security(inode, dir, qstr,
52 &ext2_initxattrs, NULL);
Stephen Smalley10f47e62005-09-09 13:01:39 -070053}
54
Stephen Hemminger749c72ef2010-05-13 17:53:16 -070055const struct xattr_handler ext2_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .prefix = XATTR_SECURITY_PREFIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 .get = ext2_xattr_security_get,
58 .set = ext2_xattr_security_set,
59};