blob: d5f6eb0b487bca9d24dbe97fa4b5b6b87a8461a2 [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,
Mark Salyzyn3484eba2019-11-04 08:57:10 -080014 const char *name, void *buffer, size_t size, int flags)
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,
Al Viro59301222016-05-27 10:19:30 -040022 struct dentry *unused, struct inode *inode,
23 const char *name, const void *value,
24 size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Al Viro59301222016-05-27 10:19:30 -040026 return ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY, name,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 value, size, flags);
28}
29
Rashika Kheria17cd48e2014-02-09 18:34:10 +053030static int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
31 void *fs_info)
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040032{
33 const struct xattr *xattr;
34 int err = 0;
35
36 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
37 err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
38 xattr->name, xattr->value,
39 xattr->value_len, 0);
40 if (err < 0)
41 break;
42 }
43 return err;
44}
45
Stephen Smalley10f47e62005-09-09 13:01:39 -070046int
Eric Paris2a7dba32011-02-01 11:05:39 -050047ext2_init_security(struct inode *inode, struct inode *dir,
48 const struct qstr *qstr)
Stephen Smalley10f47e62005-09-09 13:01:39 -070049{
Mimi Zohar9d8f13b2011-06-06 15:29:25 -040050 return security_inode_init_security(inode, dir, qstr,
51 &ext2_initxattrs, NULL);
Stephen Smalley10f47e62005-09-09 13:01:39 -070052}
53
Stephen Hemminger749c72ef2010-05-13 17:53:16 -070054const struct xattr_handler ext2_xattr_security_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .prefix = XATTR_SECURITY_PREFIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 .get = ext2_xattr_security_get,
57 .set = ext2_xattr_security_set,
58};