diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2016-09-16 06:44:20 -0400 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2016-09-16 06:44:20 -0400 |
commit | f2b20f6ee842313a0d681dbbf7f87b70291a6a3b (patch) | |
tree | b4bea4c83e1968a4f69592e9a7fc15be81750a8c /fs/utimes.c | |
parent | e71b9dff0634edb127f449e076e883ef24a8c76c (diff) |
vfs: move permission checking into notify_change() for utimes(NULL)
This fixes a bug where the permission was not properly checked in
overlayfs. The testcase is ltp/utimensat01.
It is also cleaner and safer to do the permission checking in the vfs
helper instead of the caller.
This patch introduces an additional ia_valid flag ATTR_TOUCH (since
touch(1) is the most obvious user of utimes(NULL)) that is passed into
notify_change whenever the conditions for this special permission checking
mode are met.
Reported-by: Aihua Zhang <zhangaihua1@huawei.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Tested-by: Aihua Zhang <zhangaihua1@huawei.com>
Cc: <stable@vger.kernel.org> # v3.18+
Diffstat (limited to 'fs/utimes.c')
-rw-r--r-- | fs/utimes.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/fs/utimes.c b/fs/utimes.c index 794f5f5b1fb5..ba54b9e648c9 100644 --- a/fs/utimes.c +++ b/fs/utimes.c | |||
@@ -87,21 +87,7 @@ static int utimes_common(struct path *path, struct timespec *times) | |||
87 | */ | 87 | */ |
88 | newattrs.ia_valid |= ATTR_TIMES_SET; | 88 | newattrs.ia_valid |= ATTR_TIMES_SET; |
89 | } else { | 89 | } else { |
90 | /* | 90 | newattrs.ia_valid |= ATTR_TOUCH; |
91 | * If times is NULL (or both times are UTIME_NOW), | ||
92 | * then we need to check permissions, because | ||
93 | * inode_change_ok() won't do it. | ||
94 | */ | ||
95 | error = -EPERM; | ||
96 | if (IS_IMMUTABLE(inode)) | ||
97 | goto mnt_drop_write_and_out; | ||
98 | |||
99 | error = -EACCES; | ||
100 | if (!inode_owner_or_capable(inode)) { | ||
101 | error = inode_permission(inode, MAY_WRITE); | ||
102 | if (error) | ||
103 | goto mnt_drop_write_and_out; | ||
104 | } | ||
105 | } | 91 | } |
106 | retry_deleg: | 92 | retry_deleg: |
107 | inode_lock(inode); | 93 | inode_lock(inode); |
@@ -113,7 +99,6 @@ retry_deleg: | |||
113 | goto retry_deleg; | 99 | goto retry_deleg; |
114 | } | 100 | } |
115 | 101 | ||
116 | mnt_drop_write_and_out: | ||
117 | mnt_drop_write(path->mnt); | 102 | mnt_drop_write(path->mnt); |
118 | out: | 103 | out: |
119 | return error; | 104 | return error; |