Release 4.7 fs/ext2/xattr_security.c
/*
* linux/fs/ext2/xattr_security.c
* Handler for storing security labels as extended attributes.
*/
#include "ext2.h"
#include <linux/security.h>
#include "xattr.h"
static int
ext2_xattr_security_get(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, void *buffer, size_t size)
{
return ext2_xattr_get(inode, EXT2_XATTR_INDEX_SECURITY, name,
buffer, size);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andrew morton | andrew morton | 34 | 70.83% | 1 | 25.00% |
al viro | al viro | 7 | 14.58% | 1 | 25.00% |
andreas gruenbacher | andreas gruenbacher | 6 | 12.50% | 1 | 25.00% |
christoph hellwig | christoph hellwig | 1 | 2.08% | 1 | 25.00% |
| Total | 48 | 100.00% | 4 | 100.00% |
static int
ext2_xattr_security_set(const struct xattr_handler *handler,
struct dentry *unused, struct inode *inode,
const char *name, const void *value,
size_t size, int flags)
{
return ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY, name,
value, size, flags);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andrew morton | andrew morton | 40 | 74.07% | 1 | 25.00% |
al viro | al viro | 7 | 12.96% | 1 | 25.00% |
andreas gruenbacher | andreas gruenbacher | 6 | 11.11% | 1 | 25.00% |
christoph hellwig | christoph hellwig | 1 | 1.85% | 1 | 25.00% |
| Total | 54 | 100.00% | 4 | 100.00% |
static int ext2_initxattrs(struct inode *inode, const struct xattr *xattr_array,
void *fs_info)
{
const struct xattr *xattr;
int err = 0;
for (xattr = xattr_array; xattr->name != NULL; xattr++) {
err = ext2_xattr_set(inode, EXT2_XATTR_INDEX_SECURITY,
xattr->name, xattr->value,
xattr->value_len, 0);
if (err < 0)
break;
}
return err;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
mimi zohar | mimi zohar | 44 | 53.66% | 1 | 25.00% |
stephen d. smalley | stephen d. smalley | 34 | 41.46% | 1 | 25.00% |
eric paris | eric paris | 3 | 3.66% | 1 | 25.00% |
rashika kheria | rashika kheria | 1 | 1.22% | 1 | 25.00% |
| Total | 82 | 100.00% | 4 | 100.00% |
int
ext2_init_security(struct inode *inode, struct inode *dir,
const struct qstr *qstr)
{
return security_inode_init_security(inode, dir, qstr,
&ext2_initxattrs, NULL);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
mimi zohar | mimi zohar | 27 | 75.00% | 1 | 50.00% |
stephen d. smalley | stephen d. smalley | 9 | 25.00% | 1 | 50.00% |
| Total | 36 | 100.00% | 2 | 100.00% |
const struct xattr_handler ext2_xattr_security_handler = {
.prefix = XATTR_SECURITY_PREFIX,
.get = ext2_xattr_security_get,
.set = ext2_xattr_security_set,
};
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
andrew morton | andrew morton | 100 | 39.68% | 1 | 8.33% |
mimi zohar | mimi zohar | 71 | 28.17% | 1 | 8.33% |
stephen d. smalley | stephen d. smalley | 46 | 18.25% | 1 | 8.33% |
al viro | al viro | 15 | 5.95% | 3 | 25.00% |
andreas gruenbacher | andreas gruenbacher | 12 | 4.76% | 1 | 8.33% |
eric paris | eric paris | 3 | 1.19% | 1 | 8.33% |
christoph hellwig | christoph hellwig | 2 | 0.79% | 1 | 8.33% |
james morris | james morris | 1 | 0.40% | 1 | 8.33% |
stephen hemminger | stephen hemminger | 1 | 0.40% | 1 | 8.33% |
rashika kheria | rashika kheria | 1 | 0.40% | 1 | 8.33% |
| Total | 252 | 100.00% | 12 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.