/* * Copyright (C) 2009 IBM Corporation * Author: Mimi Zohar <zohar@us.ibm.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2 of the License. */ #ifndef _LINUX_INTEGRITY_H #define _LINUX_INTEGRITY_H #include <linux/fs.h> enum integrity_status { INTEGRITY_PASS = 0, INTEGRITY_FAIL, INTEGRITY_NOLABEL, INTEGRITY_NOXATTRS, INTEGRITY_UNKNOWN, }; /* List of EVM protected security xattrs */ #ifdef CONFIG_INTEGRITY extern struct integrity_iint_cache *integrity_inode_get(struct inode *inode); extern void integrity_inode_free(struct inode *inode); extern void __init integrity_load_keys(void); #else
static inline struct integrity_iint_cache * integrity_inode_get(struct inode *inode) { return NULL; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Mimi Zohar | 12 | 70.59% | 1 | 50.00% |
Dmitry Kasatkin | 5 | 29.41% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Mimi Zohar | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Dmitry Kasatkin | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Mimi Zohar | 79 | 74.53% | 3 | 42.86% |
Dmitry Kasatkin | 26 | 24.53% | 3 | 42.86% |
Paul Bolle | 1 | 0.94% | 1 | 14.29% |
Total | 106 | 100.00% | 7 | 100.00% |