aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/security.h
diff options
context:
space:
mode:
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>2009-10-04 08:49:48 -0400
committerJames Morris <jmorris@namei.org>2009-10-11 19:56:02 -0400
commit8b8efb44033c7e86b3dc76f825c693ec92ae30e9 (patch)
tree8cf43afc59f88f36a86f3a8165770bccec28b3c3 /include/linux/security.h
parent89eda06837094ce9f34fae269b8773fcfd70f046 (diff)
LSM: Add security_path_chroot().
This patch allows pathname based LSM modules to check chroot() operations. This hook is used by TOMOYO. Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include/linux/security.h')
-rw-r--r--include/linux/security.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/security.h b/include/linux/security.h
index c8a584c26f7b..ed0faea60b82 100644
--- a/include/linux/security.h
+++ b/include/linux/security.h
@@ -459,6 +459,10 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
459 * @uid contains new owner's ID. 459 * @uid contains new owner's ID.
460 * @gid contains new group's ID. 460 * @gid contains new group's ID.
461 * Return 0 if permission is granted. 461 * Return 0 if permission is granted.
462 * @path_chroot:
463 * Check for permission to change root directory.
464 * @path contains the path structure.
465 * Return 0 if permission is granted.
462 * @inode_readlink: 466 * @inode_readlink:
463 * Check the permission to read the symbolic link. 467 * Check the permission to read the symbolic link.
464 * @dentry contains the dentry structure for the file link. 468 * @dentry contains the dentry structure for the file link.
@@ -1503,6 +1507,7 @@ struct security_operations {
1503 int (*path_chmod) (struct dentry *dentry, struct vfsmount *mnt, 1507 int (*path_chmod) (struct dentry *dentry, struct vfsmount *mnt,
1504 mode_t mode); 1508 mode_t mode);
1505 int (*path_chown) (struct path *path, uid_t uid, gid_t gid); 1509 int (*path_chown) (struct path *path, uid_t uid, gid_t gid);
1510 int (*path_chroot) (struct path *path);
1506#endif 1511#endif
1507 1512
1508 int (*inode_alloc_security) (struct inode *inode); 1513 int (*inode_alloc_security) (struct inode *inode);
@@ -2970,6 +2975,7 @@ int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
2970int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, 2975int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt,
2971 mode_t mode); 2976 mode_t mode);
2972int security_path_chown(struct path *path, uid_t uid, gid_t gid); 2977int security_path_chown(struct path *path, uid_t uid, gid_t gid);
2978int security_path_chroot(struct path *path);
2973#else /* CONFIG_SECURITY_PATH */ 2979#else /* CONFIG_SECURITY_PATH */
2974static inline int security_path_unlink(struct path *dir, struct dentry *dentry) 2980static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
2975{ 2981{
@@ -3031,6 +3037,11 @@ static inline int security_path_chown(struct path *path, uid_t uid, gid_t gid)
3031{ 3037{
3032 return 0; 3038 return 0;
3033} 3039}
3040
3041static inline int security_path_chroot(struct path *path)
3042{
3043 return 0;
3044}
3034#endif /* CONFIG_SECURITY_PATH */ 3045#endif /* CONFIG_SECURITY_PATH */
3035 3046
3036#ifdef CONFIG_KEYS 3047#ifdef CONFIG_KEYS