blob: 6db30a328d989c5d364c231c0bb26bfc56c3c579 [file] [log] [blame]
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001/*
2 * Copyright (C) 2008 IBM Corporation
3 * Author: Mimi Zohar <zohar@us.ibm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, version 2 of the License.
8 */
9
10#include <linux/fs.h>
11
12#ifndef _LINUX_IMA_H
13#define _LINUX_IMA_H
14
Mimi Zohar3323eec92009-02-04 09:06:58 -050015#ifdef CONFIG_IMA
16extern int ima_bprm_check(struct linux_binprm *bprm);
17extern int ima_inode_alloc(struct inode *inode);
18extern void ima_inode_free(struct inode *inode);
19extern int ima_path_check(struct path *path, int mask);
20extern void ima_file_free(struct file *file);
21extern int ima_file_mmap(struct file *file, unsigned long prot);
Mimi Zohar1df9f0a2009-02-04 09:07:02 -050022extern void ima_shm_check(struct file *file);
Mimi Zohar3323eec92009-02-04 09:06:58 -050023
24#else
Mimi Zohar6146f0d2009-02-04 09:06:57 -050025static inline int ima_bprm_check(struct linux_binprm *bprm)
26{
27 return 0;
28}
29
30static inline int ima_inode_alloc(struct inode *inode)
31{
32 return 0;
33}
34
35static inline void ima_inode_free(struct inode *inode)
36{
37 return;
38}
39
40static inline int ima_path_check(struct path *path, int mask)
41{
42 return 0;
43}
44
45static inline void ima_file_free(struct file *file)
46{
47 return;
48}
49
50static inline int ima_file_mmap(struct file *file, unsigned long prot)
51{
52 return 0;
53}
Mimi Zohar1df9f0a2009-02-04 09:07:02 -050054
55static inline void ima_shm_check(struct file *file)
56{
57 return;
58}
Mimi Zohar3323eec92009-02-04 09:06:58 -050059#endif /* CONFIG_IMA_H */
Mimi Zohar6146f0d2009-02-04 09:06:57 -050060#endif /* _LINUX_IMA_H */