|
From: Mimi Z. <zo...@li...> - 2010-03-24 20:45:11
|
Integrity appraisal measures files on file_free and stores the file measurement as an xattr. Measure the file before releasing it. Signed-off-by: Mimi Zohar <zo...@us...> Acked-by: Serge Hallyn <se...@us...> diff --git a/fs/file_table.c b/fs/file_table.c index b98404b..c97f112 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -250,10 +250,10 @@ void __fput(struct file *file) if (file->f_op && file->f_op->fasync) file->f_op->fasync(-1, file, 0); } + ima_file_free(file); if (file->f_op && file->f_op->release) file->f_op->release(inode, file); security_file_free(file); - ima_file_free(file); if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL)) cdev_put(inode->i_cdev); fops_put(file->f_op); -- 1.6.6 |