4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 only,
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License version 2 for more details (a copy is included
14 * in the LICENSE file that accompanied this code).
16 * You should have received a copy of the GNU General Public License
17 * version 2 along with this program; If not, see http://www.gnu.org/licenses
23 * Copyright (c) 2014 Bull SAS
24 * Author: Sebastien Buisson sebastien.buisson@bull.net
28 * lustre/llite/xattr_security.c
29 * Handler for storing security labels as extended attributes.
33 #include <linux/security.h>
34 #include <linux/xattr.h>
35 #include "llite_internal.h"
37 #ifdef HAVE_SECURITY_IINITSEC_CALLBACK
39 * A helper function for ll_security_inode_init_security()
40 * that takes care of setting xattrs
42 * Get security context of @inode from @xattr_array,
43 * and put it in 'security.xxx' xattr of dentry
47 * \retval -ENOMEM if no memory could be allocated for xattr name
48 * \retval < 0 failure to set xattr
51 ll_initxattrs(struct inode *inode, const struct xattr *xattr_array,
54 const struct xattr *xattr;
55 struct dentry *dentry = fs_info;
60 for (xattr = xattr_array; xattr->name != NULL; xattr++) {
61 name_len = strlen(XATTR_SECURITY_PREFIX) + strlen(xattr->name)
63 OBD_ALLOC(full_name, name_len);
64 if (full_name == NULL)
66 strlcpy(full_name, XATTR_SECURITY_PREFIX, name_len);
67 strlcat(full_name, xattr->name, name_len);
69 err = ll_setxattr(dentry, full_name, xattr->value,
72 OBD_FREE(full_name, name_len);
81 * Initializes security context
83 * Get security context of @inode in @dir,
84 * and put it in 'security.xxx' xattr of @dentry.
86 * \retval 0 success, or SELinux is disabled
87 * \retval -ENOMEM if no memory could be allocated for xattr name
88 * \retval < 0 failure to get security context or set xattr
91 ll_init_security(struct dentry *dentry, struct inode *inode, struct inode *dir)
93 if (!selinux_is_enabled())
96 return ll_security_inode_init_security(inode, dir, NULL, NULL, 0,
97 &ll_initxattrs, dentry);
99 #else /* !HAVE_SECURITY_IINITSEC_CALLBACK */
101 * Initializes security context
103 * Get security context of @inode in @dir,
104 * and put it in 'security.xxx' xattr of @dentry.
106 * \retval 0 success, or SELinux is disabled
107 * \retval -ENOMEM if no memory could be allocated for xattr name
108 * \retval < 0 failure to get security context or set xattr
111 ll_init_security(struct dentry *dentry, struct inode *inode, struct inode *dir)
114 size_t len, name_len;
116 char *name, *full_name;
118 if (!selinux_is_enabled())
121 err = ll_security_inode_init_security(inode, dir, &name, &value, &len,
124 if (err == -EOPNOTSUPP)
129 name_len = strlen(XATTR_SECURITY_PREFIX) + strlen(name) + 1;
130 OBD_ALLOC(full_name, name_len);
131 if (full_name == NULL)
132 GOTO(out_free, err = -ENOMEM);
133 strlcpy(full_name, XATTR_SECURITY_PREFIX, name_len);
134 strlcat(full_name, name, name_len);
136 err = ll_setxattr(dentry, full_name, value, len, 0);
137 OBD_FREE(full_name, name_len);
145 #endif /* HAVE_SECURITY_IINITSEC_CALLBACK */