cregit-Linux how code gets into the kernel

Release 4.16 include/linux/integrity.h

Directory: include/linux
/*
 * 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_PASS_IMMUTABLE,
	
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

PersonTokensPropCommitsCommitProp
Mimi Zohar1270.59%150.00%
Dmitry Kasatkin529.41%150.00%
Total17100.00%2100.00%


static inline void integrity_inode_free(struct inode *inode) { return; }

Contributors

PersonTokensPropCommitsCommitProp
Mimi Zohar13100.00%1100.00%
Total13100.00%1100.00%


static inline void integrity_load_keys(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Dmitry Kasatkin8100.00%1100.00%
Total8100.00%1100.00%

#endif /* CONFIG_INTEGRITY */ #endif /* _LINUX_INTEGRITY_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Mimi Zohar7973.15%337.50%
Dmitry Kasatkin2624.07%337.50%
Matthew Garrett21.85%112.50%
Paul Bolle10.93%112.50%
Total108100.00%8100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.