blob: d60dc1edb526885584bf62b74da1542e271a8f7d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/attr.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 * changes by Thomas Schoebel-Theuer
7 */
8
Paul Gortmaker630d9c42011-11-16 23:57:37 -05009#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/time.h>
11#include <linux/mm.h>
12#include <linux/string.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010013#include <linux/sched/signal.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080014#include <linux/capability.h>
Robert Love0eeca282005-07-12 17:06:03 -040015#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fcntl.h>
Jeff Layton5970e152022-11-20 09:15:34 -050017#include <linux/filelock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/security.h>
Mimi Zohar975d2942011-03-09 14:39:57 -050019#include <linux/evm.h>
Mimi Zohar9957a502011-03-09 22:57:53 -050020#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Christian Brauner11c2a872022-10-17 17:06:34 +020022#include "internal.h"
23
Christian Brauner72ae0172022-10-17 17:06:36 +020024/**
25 * setattr_should_drop_sgid - determine whether the setgid bit needs to be
26 * removed
Christian Brauner9452e932023-01-13 12:49:27 +010027 * @idmap: idmap of the mount @inode was found from
Christian Brauner72ae0172022-10-17 17:06:36 +020028 * @inode: inode to check
29 *
30 * This function determines whether the setgid bit needs to be removed.
31 * We retain backwards compatibility and require setgid bit to be removed
32 * unconditionally if S_IXGRP is set. Otherwise we have the exact same
33 * requirements as setattr_prepare() and setattr_copy().
34 *
35 * Return: ATTR_KILL_SGID if setgid bit needs to be removed, 0 otherwise.
36 */
Christian Brauner9452e932023-01-13 12:49:27 +010037int setattr_should_drop_sgid(struct mnt_idmap *idmap,
Christian Brauner72ae0172022-10-17 17:06:36 +020038 const struct inode *inode)
39{
40 umode_t mode = inode->i_mode;
41
42 if (!(mode & S_ISGID))
43 return 0;
44 if (mode & S_IXGRP)
45 return ATTR_KILL_SGID;
Christian Braunere67fe632023-01-13 12:49:30 +010046 if (!in_group_or_capable(idmap, inode, i_gid_into_vfsgid(idmap, inode)))
Christian Brauner72ae0172022-10-17 17:06:36 +020047 return ATTR_KILL_SGID;
48 return 0;
49}
Christian Brauner4f704d92023-03-14 12:51:10 +010050EXPORT_SYMBOL(setattr_should_drop_sgid);
Christian Brauner72ae0172022-10-17 17:06:36 +020051
Christian Braunered5a7042022-10-17 17:06:37 +020052/**
53 * setattr_should_drop_suidgid - determine whether the set{g,u}id bit needs to
54 * be dropped
Christian Brauner9452e932023-01-13 12:49:27 +010055 * @idmap: idmap of the mount @inode was found from
Christian Braunered5a7042022-10-17 17:06:37 +020056 * @inode: inode to check
Christian Braunere243e3f2022-10-17 17:06:35 +020057 *
Christian Braunered5a7042022-10-17 17:06:37 +020058 * This function determines whether the set{g,u}id bits need to be removed.
59 * If the setuid bit needs to be removed ATTR_KILL_SUID is returned. If the
60 * setgid bit needs to be removed ATTR_KILL_SGID is returned. If both
61 * set{g,u}id bits need to be removed the corresponding mask of both flags is
62 * returned.
63 *
64 * Return: A mask of ATTR_KILL_S{G,U}ID indicating which - if any - setid bits
65 * to remove, 0 otherwise.
Christian Braunere243e3f2022-10-17 17:06:35 +020066 */
Christian Brauner9452e932023-01-13 12:49:27 +010067int setattr_should_drop_suidgid(struct mnt_idmap *idmap,
Christian Braunered5a7042022-10-17 17:06:37 +020068 struct inode *inode)
Christian Braunere243e3f2022-10-17 17:06:35 +020069{
Christian Braunered5a7042022-10-17 17:06:37 +020070 umode_t mode = inode->i_mode;
Christian Braunere243e3f2022-10-17 17:06:35 +020071 int kill = 0;
72
73 /* suid always must be killed */
74 if (unlikely(mode & S_ISUID))
75 kill = ATTR_KILL_SUID;
76
Christian Brauner9452e932023-01-13 12:49:27 +010077 kill |= setattr_should_drop_sgid(idmap, inode);
Christian Braunere243e3f2022-10-17 17:06:35 +020078
79 if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode)))
80 return kill;
81
82 return 0;
83}
Christian Braunered5a7042022-10-17 17:06:37 +020084EXPORT_SYMBOL(setattr_should_drop_suidgid);
Christian Braunere243e3f2022-10-17 17:06:35 +020085
Christian Brauner2f221d62021-01-21 14:19:26 +010086/**
87 * chown_ok - verify permissions to chown inode
Christian Brauner9452e932023-01-13 12:49:27 +010088 * @idmap: idmap of the mount @inode was found from
Christian Brauner2f221d62021-01-21 14:19:26 +010089 * @inode: inode to check permissions on
Christian Brauner81a18072022-06-27 15:40:45 +020090 * @ia_vfsuid: uid to chown @inode to
Christian Brauner2f221d62021-01-21 14:19:26 +010091 *
Christian Brauner9452e932023-01-13 12:49:27 +010092 * If the inode has been found through an idmapped mount the idmap of
93 * the vfsmount must be passed through @idmap. This function will then
94 * take care to map the inode according to @idmap before checking
Christian Brauner2f221d62021-01-21 14:19:26 +010095 * permissions. On non-idmapped mounts or if permission checking is to be
Christian Brauner9452e932023-01-13 12:49:27 +010096 * performed on the raw inode simply pass @nop_mnt_idmap.
Christian Brauner2f221d62021-01-21 14:19:26 +010097 */
Christian Brauner9452e932023-01-13 12:49:27 +010098static bool chown_ok(struct mnt_idmap *idmap,
Christian Braunerb27c82e2022-06-21 16:14:54 +020099 const struct inode *inode, vfsuid_t ia_vfsuid)
Eric W. Biederman00311812016-10-15 18:36:59 -0500100{
Christian Braunere67fe632023-01-13 12:49:30 +0100101 vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode);
Christian Braunerb27c82e2022-06-21 16:14:54 +0200102 if (vfsuid_eq_kuid(vfsuid, current_fsuid()) &&
103 vfsuid_eq(ia_vfsuid, vfsuid))
Eric W. Biederman00311812016-10-15 18:36:59 -0500104 return true;
Christian Brauner9452e932023-01-13 12:49:27 +0100105 if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN))
Eric W. Biederman00311812016-10-15 18:36:59 -0500106 return true;
Christian Braunerb27c82e2022-06-21 16:14:54 +0200107 if (!vfsuid_valid(vfsuid) &&
Eric W. Biederman00311812016-10-15 18:36:59 -0500108 ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN))
109 return true;
110 return false;
111}
112
Christian Brauner2f221d62021-01-21 14:19:26 +0100113/**
114 * chgrp_ok - verify permissions to chgrp inode
Christian Brauner9452e932023-01-13 12:49:27 +0100115 * @idmap: idmap of the mount @inode was found from
Christian Brauner2f221d62021-01-21 14:19:26 +0100116 * @inode: inode to check permissions on
Christian Brauner81a18072022-06-27 15:40:45 +0200117 * @ia_vfsgid: gid to chown @inode to
Christian Brauner2f221d62021-01-21 14:19:26 +0100118 *
Christian Brauner9452e932023-01-13 12:49:27 +0100119 * If the inode has been found through an idmapped mount the idmap of
120 * the vfsmount must be passed through @idmap. This function will then
121 * take care to map the inode according to @idmap before checking
Christian Brauner2f221d62021-01-21 14:19:26 +0100122 * permissions. On non-idmapped mounts or if permission checking is to be
Christian Brauner9452e932023-01-13 12:49:27 +0100123 * performed on the raw inode simply pass @nop_mnt_idmap.
Christian Brauner2f221d62021-01-21 14:19:26 +0100124 */
Christian Brauner9452e932023-01-13 12:49:27 +0100125static bool chgrp_ok(struct mnt_idmap *idmap,
Christian Braunerb27c82e2022-06-21 16:14:54 +0200126 const struct inode *inode, vfsgid_t ia_vfsgid)
Eric W. Biederman00311812016-10-15 18:36:59 -0500127{
Christian Braunere67fe632023-01-13 12:49:30 +0100128 vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode);
129 vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode);
Christian Braunerb27c82e2022-06-21 16:14:54 +0200130 if (vfsuid_eq_kuid(vfsuid, current_fsuid())) {
131 if (vfsgid_eq(ia_vfsgid, vfsgid))
Christian Brauner168f9122022-06-13 13:15:17 +0200132 return true;
Christian Braunerb27c82e2022-06-21 16:14:54 +0200133 if (vfsgid_in_group_p(ia_vfsgid))
Christian Brauner168f9122022-06-13 13:15:17 +0200134 return true;
135 }
Christian Brauner9452e932023-01-13 12:49:27 +0100136 if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN))
Eric W. Biederman00311812016-10-15 18:36:59 -0500137 return true;
Christian Braunerb27c82e2022-06-21 16:14:54 +0200138 if (!vfsgid_valid(vfsgid) &&
Eric W. Biederman00311812016-10-15 18:36:59 -0500139 ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN))
140 return true;
141 return false;
142}
143
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200144/**
Jan Kara31051c82016-05-26 16:55:18 +0200145 * setattr_prepare - check if attribute changes to a dentry are allowed
Christian Braunerc1632a02023-01-13 12:49:11 +0100146 * @idmap: idmap of the mount the inode was found from
Jan Kara31051c82016-05-26 16:55:18 +0200147 * @dentry: dentry to check
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200148 * @attr: attributes to change
149 *
150 * Check if we are allowed to change the attributes contained in @attr
Jan Kara31051c82016-05-26 16:55:18 +0200151 * in the given dentry. This includes the normal unix access permission
152 * checks, as well as checks for rlimits and others. The function also clears
153 * SGID bit from mode if user is not allowed to set it. Also file capabilities
154 * and IMA extended attributes are cleared if ATTR_KILL_PRIV is set.
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200155 *
Christian Braunerc1632a02023-01-13 12:49:11 +0100156 * If the inode has been found through an idmapped mount the idmap of
157 * the vfsmount must be passed through @idmap. This function will then
158 * take care to map the inode according to @idmap before checking
Christian Brauner2f221d62021-01-21 14:19:26 +0100159 * permissions. On non-idmapped mounts or if permission checking is to be
Christian Braunerc1632a02023-01-13 12:49:11 +0100160 * performed on the raw inode simply passs @nop_mnt_idmap.
Christian Brauner2f221d62021-01-21 14:19:26 +0100161 *
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200162 * Should be called as the first thing in ->setattr implementations,
163 * possibly after taking additional locks.
164 */
Christian Braunerc1632a02023-01-13 12:49:11 +0100165int setattr_prepare(struct mnt_idmap *idmap, struct dentry *dentry,
Christian Brauner2f221d62021-01-21 14:19:26 +0100166 struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Jan Kara31051c82016-05-26 16:55:18 +0200168 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned int ia_valid = attr->ia_valid;
170
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200171 /*
172 * First check size constraints. These can't be overriden using
173 * ATTR_FORCE.
174 */
175 if (ia_valid & ATTR_SIZE) {
176 int error = inode_newsize_ok(inode, attr->ia_size);
177 if (error)
178 return error;
179 }
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 /* If force is set do it anyway. */
182 if (ia_valid & ATTR_FORCE)
Jan Kara030b5332016-05-26 17:21:32 +0200183 goto kill_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 /* Make sure a caller can chown. */
Christian Braunerb27c82e2022-06-21 16:14:54 +0200186 if ((ia_valid & ATTR_UID) &&
Christian Brauner9452e932023-01-13 12:49:27 +0100187 !chown_ok(idmap, inode, attr->ia_vfsuid))
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200188 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /* Make sure caller can chgrp. */
Christian Braunerb27c82e2022-06-21 16:14:54 +0200191 if ((ia_valid & ATTR_GID) &&
Christian Brauner9452e932023-01-13 12:49:27 +0100192 !chgrp_ok(idmap, inode, attr->ia_vfsgid))
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200193 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* Make sure a caller can chmod. */
196 if (ia_valid & ATTR_MODE) {
Christian Braunerb27c82e2022-06-21 16:14:54 +0200197 vfsgid_t vfsgid;
Christian Brauner168f9122022-06-13 13:15:17 +0200198
Christian Brauner01beba72023-01-13 12:49:26 +0100199 if (!inode_owner_or_capable(idmap, inode))
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200200 return -EPERM;
Christian Brauner168f9122022-06-13 13:15:17 +0200201
202 if (ia_valid & ATTR_GID)
Christian Braunerb27c82e2022-06-21 16:14:54 +0200203 vfsgid = attr->ia_vfsgid;
Christian Brauner168f9122022-06-13 13:15:17 +0200204 else
Christian Braunere67fe632023-01-13 12:49:30 +0100205 vfsgid = i_gid_into_vfsgid(idmap, inode);
Christian Brauner168f9122022-06-13 13:15:17 +0200206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Also check the setgid bit! */
Christian Brauner9452e932023-01-13 12:49:27 +0100208 if (!in_group_or_capable(idmap, inode, vfsgid))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 attr->ia_mode &= ~S_ISGID;
210 }
211
212 /* Check for setting the inode time. */
Miklos Szeredi9767d742008-07-01 15:01:26 +0200213 if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)) {
Christian Brauner01beba72023-01-13 12:49:26 +0100214 if (!inode_owner_or_capable(idmap, inode))
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200215 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200217
Jan Kara030b5332016-05-26 17:21:32 +0200218kill_priv:
219 /* User has permission for the change */
220 if (ia_valid & ATTR_KILL_PRIV) {
221 int error;
222
Christian Brauner39f60c12023-01-13 12:49:23 +0100223 error = security_inode_killpriv(idmap, dentry);
Jan Kara030b5332016-05-26 17:21:32 +0200224 if (error)
225 return error;
226 }
227
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
Jan Kara31051c82016-05-26 16:55:18 +0200230EXPORT_SYMBOL(setattr_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000232/**
233 * inode_newsize_ok - may this inode be truncated to a given size
234 * @inode: the inode to be truncated
235 * @offset: the new size to assign to the inode
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000236 *
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000237 * inode_newsize_ok must be called with i_mutex held.
238 *
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000239 * inode_newsize_ok will check filesystem limits and ulimits to check that the
240 * new inode size is within limits. inode_newsize_ok will also send SIGXFSZ
241 * when necessary. Caller must not proceed with inode size change if failure is
242 * returned. @inode must be a file (not directory), with appropriate
243 * permissions to allow truncate (inode_newsize_ok does NOT check these
244 * conditions).
Matthew Wilcox3fae1742018-07-03 08:08:34 -0700245 *
246 * Return: 0 on success, -ve errno on failure
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000247 */
248int inode_newsize_ok(const struct inode *inode, loff_t offset)
249{
David Howellse2ebff92022-08-08 09:52:35 +0100250 if (offset < 0)
251 return -EINVAL;
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000252 if (inode->i_size < offset) {
253 unsigned long limit;
254
Jiri Slabyd554ed892010-03-05 13:42:42 -0800255 limit = rlimit(RLIMIT_FSIZE);
npiggin@suse.de25d9e2d2009-08-21 02:35:05 +1000256 if (limit != RLIM_INFINITY && offset > limit)
257 goto out_sig;
258 if (offset > inode->i_sb->s_maxbytes)
259 goto out_big;
260 } else {
261 /*
262 * truncation of in-use swapfiles is disallowed - it would
263 * cause subsequent swapout to scribble on the now-freed
264 * blocks.
265 */
266 if (IS_SWAPFILE(inode))
267 return -ETXTBSY;
268 }
269
270 return 0;
271out_sig:
272 send_sig(SIGXFSZ, current, 0);
273out_big:
274 return -EFBIG;
275}
276EXPORT_SYMBOL(inode_newsize_ok);
277
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000278/**
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200279 * setattr_copy - copy simple metadata updates into the generic inode
Christian Braunerc1632a02023-01-13 12:49:11 +0100280 * @idmap: idmap of the mount the inode was found from
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000281 * @inode: the inode to be updated
282 * @attr: the new attributes
283 *
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200284 * setattr_copy must be called with i_mutex held.
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000285 *
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200286 * setattr_copy updates the inode's metadata with that specified
Christian Braunerb27c82e2022-06-21 16:14:54 +0200287 * in attr on idmapped mounts. Necessary permission checks to determine
Christian Brauner2f221d62021-01-21 14:19:26 +0100288 * whether or not the S_ISGID property needs to be removed are performed with
289 * the correct idmapped mount permission helpers.
290 * Noticeably missing is inode size update, which is more complex
Christoph Hellwig2c27c652010-06-04 11:30:04 +0200291 * as it requires pagecache updates.
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000292 *
Christian Braunerc1632a02023-01-13 12:49:11 +0100293 * If the inode has been found through an idmapped mount the idmap of
294 * the vfsmount must be passed through @idmap. This function will then
295 * take care to map the inode according to @idmap before checking
Christian Brauner2f221d62021-01-21 14:19:26 +0100296 * permissions. On non-idmapped mounts or if permission checking is to be
Christian Braunerc1632a02023-01-13 12:49:11 +0100297 * performed on the raw inode simply pass @nop_mnt_idmap.
Christian Brauner2f221d62021-01-21 14:19:26 +0100298 *
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000299 * The inode is not marked as dirty after this operation. The rationale is
300 * that for "simple" filesystems, the struct inode is the inode storage.
301 * The caller is free to mark the inode dirty afterwards if needed.
302 */
Christian Braunerc1632a02023-01-13 12:49:11 +0100303void setattr_copy(struct mnt_idmap *idmap, struct inode *inode,
Christian Brauner2f221d62021-01-21 14:19:26 +0100304 const struct iattr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 unsigned int ia_valid = attr->ia_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Christian Brauner0dbe12f2023-01-13 12:49:29 +0100308 i_uid_update(idmap, attr, inode);
309 i_gid_update(idmap, attr, inode);
Amir Goldsteineb31e2f2019-11-24 21:31:45 +0200310 if (ia_valid & ATTR_ATIME)
311 inode->i_atime = attr->ia_atime;
312 if (ia_valid & ATTR_MTIME)
313 inode->i_mtime = attr->ia_mtime;
314 if (ia_valid & ATTR_CTIME)
315 inode->i_ctime = attr->ia_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (ia_valid & ATTR_MODE) {
317 umode_t mode = attr->ia_mode;
Christian Brauner9452e932023-01-13 12:49:27 +0100318 if (!in_group_or_capable(idmap, inode,
Christian Braunere67fe632023-01-13 12:49:30 +0100319 i_gid_into_vfsgid(idmap, inode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 mode &= ~S_ISGID;
321 inode->i_mode = mode;
322 }
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000323}
Christoph Hellwig6a1a90a2010-06-04 11:30:00 +0200324EXPORT_SYMBOL(setattr_copy);
npiggin@suse.de7bb46a62010-05-27 01:05:33 +1000325
Christian Brauner4609e1f2023-01-13 12:49:22 +0100326int may_setattr(struct mnt_idmap *idmap, struct inode *inode,
Andreas Gruenbacher7bb698f2021-07-28 07:47:33 -0500327 unsigned int ia_valid)
328{
329 int error;
330
331 if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID | ATTR_TIMES_SET)) {
332 if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
333 return -EPERM;
334 }
335
336 /*
337 * If utimes(2) and friends are called with times == NULL (or both
338 * times are UTIME_NOW), then we need to check for write permission
339 */
340 if (ia_valid & ATTR_TOUCH) {
341 if (IS_IMMUTABLE(inode))
342 return -EPERM;
343
Christian Brauner01beba72023-01-13 12:49:26 +0100344 if (!inode_owner_or_capable(idmap, inode)) {
Christian Brauner4609e1f2023-01-13 12:49:22 +0100345 error = inode_permission(idmap, inode, MAY_WRITE);
Andreas Gruenbacher7bb698f2021-07-28 07:47:33 -0500346 if (error)
347 return error;
348 }
349 }
350 return 0;
351}
352EXPORT_SYMBOL(may_setattr);
353
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400354/**
355 * notify_change - modify attributes of a filesytem object
Christian Braunerabf08572023-01-13 12:49:10 +0100356 * @idmap: idmap of the mount the inode was found from
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400357 * @dentry: object affected
Matthew Wilcox3fae1742018-07-03 08:08:34 -0700358 * @attr: new attributes
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400359 * @delegated_inode: returns inode, if the inode is delegated
360 *
361 * The caller must hold the i_mutex on the affected object.
362 *
363 * If notify_change discovers a delegation in need of breaking,
364 * it will return -EWOULDBLOCK and return a reference to the inode in
365 * delegated_inode. The caller should then break the delegation and
366 * retry. Because breaking a delegation may take a long time, the
367 * caller should drop the i_mutex before doing so.
368 *
369 * Alternatively, a caller may pass NULL for delegated_inode. This may
370 * be appropriate for callers that expect the underlying filesystem not
371 * to be NFS exported. Also, passing NULL is fine for callers holding
372 * the file open for write, as there can be no conflicting delegation in
373 * that case.
Christian Brauner2f221d62021-01-21 14:19:26 +0100374 *
Christian Braunerabf08572023-01-13 12:49:10 +0100375 * If the inode has been found through an idmapped mount the idmap of
376 * the vfsmount must be passed through @idmap. This function will then
377 * take care to map the inode according to @idmap before checking
Christian Brauner2f221d62021-01-21 14:19:26 +0100378 * permissions. On non-idmapped mounts or if permission checking is to be
Christian Braunerabf08572023-01-13 12:49:10 +0100379 * performed on the raw inode simply pass @nop_mnt_idmap.
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400380 */
Christian Braunerabf08572023-01-13 12:49:10 +0100381int notify_change(struct mnt_idmap *idmap, struct dentry *dentry,
Christian Brauner2f221d62021-01-21 14:19:26 +0100382 struct iattr *attr, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct inode *inode = dentry->d_inode;
Al Viro8d334ac2011-07-24 23:21:59 -0400385 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int error;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700387 struct timespec64 now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unsigned int ia_valid = attr->ia_valid;
389
Al Viro59551022016-01-22 15:40:57 -0500390 WARN_ON_ONCE(!inode_is_locked(inode));
Andrew Mortonc4107b32012-06-20 09:55:58 +1000391
Christian Brauner4609e1f2023-01-13 12:49:22 +0100392 error = may_setattr(idmap, inode, ia_valid);
Andreas Gruenbacher7bb698f2021-07-28 07:47:33 -0500393 if (error)
394 return error;
Miklos Szeredif2b20f62016-09-16 12:44:20 +0200395
Andi Kleen69b45732011-05-28 08:25:51 -0700396 if ((ia_valid & ATTR_MODE)) {
Al Viro8d334ac2011-07-24 23:21:59 -0400397 umode_t amode = attr->ia_mode;
Andi Kleen69b45732011-05-28 08:25:51 -0700398 /* Flag setting protected by i_mutex */
399 if (is_sxid(amode))
400 inode->i_flags &= ~S_NOSEC;
401 }
402
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700403 now = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 attr->ia_ctime = now;
406 if (!(ia_valid & ATTR_ATIME_SET))
407 attr->ia_atime = now;
Amir Goldsteineb31e2f2019-11-24 21:31:45 +0200408 else
409 attr->ia_atime = timestamp_truncate(attr->ia_atime, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (!(ia_valid & ATTR_MTIME_SET))
411 attr->ia_mtime = now;
Amir Goldsteineb31e2f2019-11-24 21:31:45 +0200412 else
413 attr->ia_mtime = timestamp_truncate(attr->ia_mtime, inode);
414
Serge E. Hallynb5376772007-10-16 23:31:36 -0700415 if (ia_valid & ATTR_KILL_PRIV) {
Serge E. Hallynb5376772007-10-16 23:31:36 -0700416 error = security_inode_need_killpriv(dentry);
Jan Kara030b5332016-05-26 17:21:32 +0200417 if (error < 0)
Serge E. Hallynb5376772007-10-16 23:31:36 -0700418 return error;
Jan Kara030b5332016-05-26 17:21:32 +0200419 if (error == 0)
420 ia_valid = attr->ia_valid &= ~ATTR_KILL_PRIV;
Serge E. Hallynb5376772007-10-16 23:31:36 -0700421 }
Jeff Layton6de0ec02007-10-18 03:05:20 -0700422
423 /*
424 * We now pass ATTR_KILL_S*ID to the lower level setattr function so
425 * that the function has the ability to reinterpret a mode change
426 * that's due to these bits. This adds an implicit restriction that
427 * no function will ever call notify_change with both ATTR_MODE and
428 * ATTR_KILL_S*ID set.
429 */
430 if ((ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) &&
431 (ia_valid & ATTR_MODE))
432 BUG();
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (ia_valid & ATTR_KILL_SUID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (mode & S_ISUID) {
Jeff Layton6de0ec02007-10-18 03:05:20 -0700436 ia_valid = attr->ia_valid |= ATTR_MODE;
437 attr->ia_mode = (inode->i_mode & ~S_ISUID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 }
440 if (ia_valid & ATTR_KILL_SGID) {
Christian Braunered5a7042022-10-17 17:06:37 +0200441 if (mode & S_ISGID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (!(ia_valid & ATTR_MODE)) {
443 ia_valid = attr->ia_valid |= ATTR_MODE;
444 attr->ia_mode = inode->i_mode;
445 }
446 attr->ia_mode &= ~S_ISGID;
447 }
448 }
Jeff Layton6de0ec02007-10-18 03:05:20 -0700449 if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
451
Seth Forsheea475acf2016-04-26 14:36:25 -0500452 /*
453 * Verify that uid/gid changes are valid in the target
454 * namespace of the superblock.
455 */
456 if (ia_valid & ATTR_UID &&
Christian Brauner4d7ca402023-01-13 12:49:32 +0100457 !vfsuid_has_fsmapping(idmap, inode->i_sb->s_user_ns,
Christian Braunerb27c82e2022-06-21 16:14:54 +0200458 attr->ia_vfsuid))
Seth Forsheea475acf2016-04-26 14:36:25 -0500459 return -EOVERFLOW;
460 if (ia_valid & ATTR_GID &&
Christian Brauner4d7ca402023-01-13 12:49:32 +0100461 !vfsgid_has_fsmapping(idmap, inode->i_sb->s_user_ns,
Christian Braunerb27c82e2022-06-21 16:14:54 +0200462 attr->ia_vfsgid))
Seth Forsheea475acf2016-04-26 14:36:25 -0500463 return -EOVERFLOW;
464
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500465 /* Don't allow modifications of files with invalid uids or
466 * gids unless those uids & gids are being made valid.
467 */
Christian Brauner2f221d62021-01-21 14:19:26 +0100468 if (!(ia_valid & ATTR_UID) &&
Christian Braunere67fe632023-01-13 12:49:30 +0100469 !vfsuid_valid(i_uid_into_vfsuid(idmap, inode)))
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500470 return -EOVERFLOW;
Christian Brauner2f221d62021-01-21 14:19:26 +0100471 if (!(ia_valid & ATTR_GID) &&
Christian Braunere67fe632023-01-13 12:49:30 +0100472 !vfsgid_valid(i_gid_into_vfsgid(idmap, inode)))
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500473 return -EOVERFLOW;
474
Christian Braunerc1632a02023-01-13 12:49:11 +0100475 error = security_inode_setattr(idmap, dentry, attr);
Miklos Szeredia77b72d2008-07-30 14:06:22 +0200476 if (error)
477 return error;
J. Bruce Fields27ac0ff2011-09-20 17:19:26 -0400478 error = try_break_deleg(inode, delegated_inode);
479 if (error)
480 return error;
Miklos Szeredia77b72d2008-07-30 14:06:22 +0200481
Christoph Hellwigeef23802010-06-04 11:30:01 +0200482 if (inode->i_op->setattr)
Christian Braunerc1632a02023-01-13 12:49:11 +0100483 error = inode->i_op->setattr(idmap, dentry, attr);
Christoph Hellwigeef23802010-06-04 11:30:01 +0200484 else
Christian Braunerc1632a02023-01-13 12:49:11 +0100485 error = simple_setattr(idmap, dentry, attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Mimi Zohar975d2942011-03-09 14:39:57 -0500487 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -0400488 fsnotify_change(dentry, ia_valid);
Christian Brauner39f60c12023-01-13 12:49:23 +0100489 ima_inode_post_setattr(idmap, dentry);
Mimi Zohar975d2942011-03-09 14:39:57 -0500490 evm_inode_post_setattr(dentry, ia_valid);
491 }
Robert Love0eeca282005-07-12 17:06:03 -0400492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return error;
494}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495EXPORT_SYMBOL(notify_change);