Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 180330
b: refs/heads/master
c: 9bbb6ca
h: refs/heads/master
v: v3
  • Loading branch information
Mimi Zohar authored and Al Viro committed Feb 7, 2010
1 parent 995d545 commit 4a71efe
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 54bb6552bd9405dc7685653157a4ec260c77a71c
refs/heads/master: 9bbb6cad0173e6220f3ac609e26beb48dab3b7cd
4 changes: 2 additions & 2 deletions trunk/fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -1736,7 +1736,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
if (nd.root.mnt)
path_put(&nd.root);
if (!IS_ERR(filp)) {
error = ima_path_check(filp, acc_mode);
error = ima_file_check(filp, acc_mode);
if (error) {
fput(filp);
filp = ERR_PTR(error);
Expand Down Expand Up @@ -1796,7 +1796,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
}
filp = nameidata_to_filp(&nd);
if (!IS_ERR(filp)) {
error = ima_path_check(filp, acc_mode);
error = ima_file_check(filp, acc_mode);
if (error) {
fput(filp);
filp = ERR_PTR(error);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/nfsd/vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
flags, current_cred());
if (IS_ERR(*filp))
host_err = PTR_ERR(*filp);
host_err = ima_path_check(*filp, access);
host_err = ima_file_check(*filp, access);
out_nfserr:
err = nfserrno(host_err);
out:
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/linux/ima.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct linux_binprm;
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);
extern int ima_path_check(struct file *file, int mask);
extern int ima_file_check(struct file *file, int mask);
extern void ima_file_free(struct file *file);
extern int ima_file_mmap(struct file *file, unsigned long prot);
extern void ima_counts_get(struct file *file);
Expand All @@ -38,7 +38,7 @@ static inline void ima_inode_free(struct inode *inode)
return;
}

static inline int ima_path_check(struct file *file, int mask)
static inline int ima_file_check(struct file *file, int mask)
{
return 0;
}
Expand Down
6 changes: 3 additions & 3 deletions trunk/security/integrity/ima/ima_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* File: ima_main.c
* implements the IMA hooks: ima_bprm_check, ima_file_mmap,
* and ima_path_check.
* and ima_file_check.
*/
#include <linux/module.h>
#include <linux/file.h>
Expand Down Expand Up @@ -306,7 +306,7 @@ int ima_bprm_check(struct linux_binprm *bprm)
* Always return 0 and audit dentry_open failures.
* (Return code will be based upon measurement appraisal.)
*/
int ima_path_check(struct file *file, int mask)
int ima_file_check(struct file *file, int mask)
{
int rc;

Expand All @@ -315,7 +315,7 @@ int ima_path_check(struct file *file, int mask)
PATH_CHECK);
return 0;
}
EXPORT_SYMBOL_GPL(ima_path_check);
EXPORT_SYMBOL_GPL(ima_file_check);

static int __init init_ima(void)
{
Expand Down

0 comments on commit 4a71efe

Please sign in to comment.