ima.h 1.3 KB
Newer Older
M
Mimi Zohar 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Copyright (C) 2008 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_IMA_H
#define _LINUX_IMA_H

M
Mimi Zohar 已提交
13 14 15
#include <linux/fs.h>
struct linux_binprm;

16 17 18 19
#ifdef CONFIG_IMA
extern int ima_bprm_check(struct linux_binprm *bprm);
extern int ima_inode_alloc(struct inode *inode);
extern void ima_inode_free(struct inode *inode);
M
Mimi Zohar 已提交
20
extern int ima_path_check(struct file *file, int mask);
21 22
extern void ima_file_free(struct file *file);
extern int ima_file_mmap(struct file *file, unsigned long prot);
M
Mimi Zohar 已提交
23
extern void ima_counts_get(struct file *file);
24 25

#else
M
Mimi Zohar 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
static inline int ima_bprm_check(struct linux_binprm *bprm)
{
	return 0;
}

static inline int ima_inode_alloc(struct inode *inode)
{
	return 0;
}

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

M
Mimi Zohar 已提交
41
static inline int ima_path_check(struct file *file, int mask)
M
Mimi Zohar 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54
{
	return 0;
}

static inline void ima_file_free(struct file *file)
{
	return;
}

static inline int ima_file_mmap(struct file *file, unsigned long prot)
{
	return 0;
}
M
Mimi Zohar 已提交
55

M
Mimi Zohar 已提交
56
static inline void ima_counts_get(struct file *file)
M
Mimi Zohar 已提交
57 58 59
{
	return;
}
60

61
#endif /* CONFIG_IMA_H */
M
Mimi Zohar 已提交
62
#endif /* _LINUX_IMA_H */