]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
1da177e4 LT |
2 | /* |
3 | * linux/fs/attr.c | |
4 | * | |
5 | * Copyright (C) 1991, 1992 Linus Torvalds | |
6 | * changes by Thomas Schoebel-Theuer | |
7 | */ | |
8 | ||
630d9c47 | 9 | #include <linux/export.h> |
1da177e4 LT |
10 | #include <linux/time.h> |
11 | #include <linux/mm.h> | |
12 | #include <linux/string.h> | |
3f07c014 | 13 | #include <linux/sched/signal.h> |
16f7e0fe | 14 | #include <linux/capability.h> |
0eeca283 | 15 | #include <linux/fsnotify.h> |
1da177e4 | 16 | #include <linux/fcntl.h> |
5970e15d | 17 | #include <linux/filelock.h> |
1da177e4 | 18 | #include <linux/security.h> |
1da177e4 | 19 | |
72ae017c CB |
20 | /** |
21 | * setattr_should_drop_sgid - determine whether the setgid bit needs to be | |
22 | * removed | |
9452e93e | 23 | * @idmap: idmap of the mount @inode was found from |
72ae017c CB |
24 | * @inode: inode to check |
25 | * | |
26 | * This function determines whether the setgid bit needs to be removed. | |
27 | * We retain backwards compatibility and require setgid bit to be removed | |
28 | * unconditionally if S_IXGRP is set. Otherwise we have the exact same | |
29 | * requirements as setattr_prepare() and setattr_copy(). | |
30 | * | |
31 | * Return: ATTR_KILL_SGID if setgid bit needs to be removed, 0 otherwise. | |
32 | */ | |
9452e93e | 33 | int setattr_should_drop_sgid(struct mnt_idmap *idmap, |
72ae017c CB |
34 | const struct inode *inode) |
35 | { | |
36 | umode_t mode = inode->i_mode; | |
37 | ||
38 | if (!(mode & S_ISGID)) | |
39 | return 0; | |
40 | if (mode & S_IXGRP) | |
41 | return ATTR_KILL_SGID; | |
e67fe633 | 42 | if (!in_group_or_capable(idmap, inode, i_gid_into_vfsgid(idmap, inode))) |
72ae017c CB |
43 | return ATTR_KILL_SGID; |
44 | return 0; | |
45 | } | |
4f704d9a | 46 | EXPORT_SYMBOL(setattr_should_drop_sgid); |
72ae017c | 47 | |
ed5a7047 CB |
48 | /** |
49 | * setattr_should_drop_suidgid - determine whether the set{g,u}id bit needs to | |
50 | * be dropped | |
9452e93e | 51 | * @idmap: idmap of the mount @inode was found from |
ed5a7047 | 52 | * @inode: inode to check |
e243e3f9 | 53 | * |
ed5a7047 CB |
54 | * This function determines whether the set{g,u}id bits need to be removed. |
55 | * If the setuid bit needs to be removed ATTR_KILL_SUID is returned. If the | |
56 | * setgid bit needs to be removed ATTR_KILL_SGID is returned. If both | |
57 | * set{g,u}id bits need to be removed the corresponding mask of both flags is | |
58 | * returned. | |
59 | * | |
60 | * Return: A mask of ATTR_KILL_S{G,U}ID indicating which - if any - setid bits | |
61 | * to remove, 0 otherwise. | |
e243e3f9 | 62 | */ |
9452e93e | 63 | int setattr_should_drop_suidgid(struct mnt_idmap *idmap, |
ed5a7047 | 64 | struct inode *inode) |
e243e3f9 | 65 | { |
ed5a7047 | 66 | umode_t mode = inode->i_mode; |
e243e3f9 CB |
67 | int kill = 0; |
68 | ||
69 | /* suid always must be killed */ | |
70 | if (unlikely(mode & S_ISUID)) | |
71 | kill = ATTR_KILL_SUID; | |
72 | ||
9452e93e | 73 | kill |= setattr_should_drop_sgid(idmap, inode); |
e243e3f9 CB |
74 | |
75 | if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) | |
76 | return kill; | |
77 | ||
78 | return 0; | |
79 | } | |
ed5a7047 | 80 | EXPORT_SYMBOL(setattr_should_drop_suidgid); |
e243e3f9 | 81 | |
2f221d6f CB |
82 | /** |
83 | * chown_ok - verify permissions to chown inode | |
9452e93e | 84 | * @idmap: idmap of the mount @inode was found from |
2f221d6f | 85 | * @inode: inode to check permissions on |
81a1807d | 86 | * @ia_vfsuid: uid to chown @inode to |
2f221d6f | 87 | * |
9452e93e CB |
88 | * If the inode has been found through an idmapped mount the idmap of |
89 | * the vfsmount must be passed through @idmap. This function will then | |
90 | * take care to map the inode according to @idmap before checking | |
2f221d6f | 91 | * permissions. On non-idmapped mounts or if permission checking is to be |
9452e93e | 92 | * performed on the raw inode simply pass @nop_mnt_idmap. |
2f221d6f | 93 | */ |
9452e93e | 94 | static bool chown_ok(struct mnt_idmap *idmap, |
b27c82e1 | 95 | const struct inode *inode, vfsuid_t ia_vfsuid) |
0031181c | 96 | { |
e67fe633 | 97 | vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); |
b27c82e1 CB |
98 | if (vfsuid_eq_kuid(vfsuid, current_fsuid()) && |
99 | vfsuid_eq(ia_vfsuid, vfsuid)) | |
0031181c | 100 | return true; |
9452e93e | 101 | if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN)) |
0031181c | 102 | return true; |
b27c82e1 | 103 | if (!vfsuid_valid(vfsuid) && |
0031181c EB |
104 | ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) |
105 | return true; | |
106 | return false; | |
107 | } | |
108 | ||
2f221d6f CB |
109 | /** |
110 | * chgrp_ok - verify permissions to chgrp inode | |
9452e93e | 111 | * @idmap: idmap of the mount @inode was found from |
2f221d6f | 112 | * @inode: inode to check permissions on |
81a1807d | 113 | * @ia_vfsgid: gid to chown @inode to |
2f221d6f | 114 | * |
9452e93e CB |
115 | * If the inode has been found through an idmapped mount the idmap of |
116 | * the vfsmount must be passed through @idmap. This function will then | |
117 | * take care to map the inode according to @idmap before checking | |
2f221d6f | 118 | * permissions. On non-idmapped mounts or if permission checking is to be |
9452e93e | 119 | * performed on the raw inode simply pass @nop_mnt_idmap. |
2f221d6f | 120 | */ |
9452e93e | 121 | static bool chgrp_ok(struct mnt_idmap *idmap, |
b27c82e1 | 122 | const struct inode *inode, vfsgid_t ia_vfsgid) |
0031181c | 123 | { |
e67fe633 CB |
124 | vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode); |
125 | vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); | |
b27c82e1 CB |
126 | if (vfsuid_eq_kuid(vfsuid, current_fsuid())) { |
127 | if (vfsgid_eq(ia_vfsgid, vfsgid)) | |
168f9128 | 128 | return true; |
b27c82e1 | 129 | if (vfsgid_in_group_p(ia_vfsgid)) |
168f9128 CB |
130 | return true; |
131 | } | |
9452e93e | 132 | if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN)) |
0031181c | 133 | return true; |
b27c82e1 | 134 | if (!vfsgid_valid(vfsgid) && |
0031181c EB |
135 | ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) |
136 | return true; | |
137 | return false; | |
138 | } | |
139 | ||
2c27c65e | 140 | /** |
31051c85 | 141 | * setattr_prepare - check if attribute changes to a dentry are allowed |
c1632a0f | 142 | * @idmap: idmap of the mount the inode was found from |
31051c85 | 143 | * @dentry: dentry to check |
2c27c65e CH |
144 | * @attr: attributes to change |
145 | * | |
146 | * Check if we are allowed to change the attributes contained in @attr | |
31051c85 JK |
147 | * in the given dentry. This includes the normal unix access permission |
148 | * checks, as well as checks for rlimits and others. The function also clears | |
149 | * SGID bit from mode if user is not allowed to set it. Also file capabilities | |
150 | * and IMA extended attributes are cleared if ATTR_KILL_PRIV is set. | |
2c27c65e | 151 | * |
c1632a0f CB |
152 | * If the inode has been found through an idmapped mount the idmap of |
153 | * the vfsmount must be passed through @idmap. This function will then | |
154 | * take care to map the inode according to @idmap before checking | |
2f221d6f | 155 | * permissions. On non-idmapped mounts or if permission checking is to be |
376870aa | 156 | * performed on the raw inode simply pass @nop_mnt_idmap. |
2f221d6f | 157 | * |
2c27c65e CH |
158 | * Should be called as the first thing in ->setattr implementations, |
159 | * possibly after taking additional locks. | |
160 | */ | |
c1632a0f | 161 | int setattr_prepare(struct mnt_idmap *idmap, struct dentry *dentry, |
2f221d6f | 162 | struct iattr *attr) |
1da177e4 | 163 | { |
31051c85 | 164 | struct inode *inode = d_inode(dentry); |
1da177e4 LT |
165 | unsigned int ia_valid = attr->ia_valid; |
166 | ||
2c27c65e CH |
167 | /* |
168 | * First check size constraints. These can't be overriden using | |
169 | * ATTR_FORCE. | |
170 | */ | |
171 | if (ia_valid & ATTR_SIZE) { | |
172 | int error = inode_newsize_ok(inode, attr->ia_size); | |
173 | if (error) | |
174 | return error; | |
175 | } | |
176 | ||
1da177e4 LT |
177 | /* If force is set do it anyway. */ |
178 | if (ia_valid & ATTR_FORCE) | |
030b533c | 179 | goto kill_priv; |
1da177e4 LT |
180 | |
181 | /* Make sure a caller can chown. */ | |
b27c82e1 | 182 | if ((ia_valid & ATTR_UID) && |
9452e93e | 183 | !chown_ok(idmap, inode, attr->ia_vfsuid)) |
2c27c65e | 184 | return -EPERM; |
1da177e4 LT |
185 | |
186 | /* Make sure caller can chgrp. */ | |
b27c82e1 | 187 | if ((ia_valid & ATTR_GID) && |
9452e93e | 188 | !chgrp_ok(idmap, inode, attr->ia_vfsgid)) |
2c27c65e | 189 | return -EPERM; |
1da177e4 LT |
190 | |
191 | /* Make sure a caller can chmod. */ | |
192 | if (ia_valid & ATTR_MODE) { | |
b27c82e1 | 193 | vfsgid_t vfsgid; |
168f9128 | 194 | |
01beba79 | 195 | if (!inode_owner_or_capable(idmap, inode)) |
2c27c65e | 196 | return -EPERM; |
168f9128 CB |
197 | |
198 | if (ia_valid & ATTR_GID) | |
b27c82e1 | 199 | vfsgid = attr->ia_vfsgid; |
168f9128 | 200 | else |
e67fe633 | 201 | vfsgid = i_gid_into_vfsgid(idmap, inode); |
168f9128 | 202 | |
1da177e4 | 203 | /* Also check the setgid bit! */ |
9452e93e | 204 | if (!in_group_or_capable(idmap, inode, vfsgid)) |
1da177e4 LT |
205 | attr->ia_mode &= ~S_ISGID; |
206 | } | |
207 | ||
208 | /* Check for setting the inode time. */ | |
9767d749 | 209 | if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)) { |
01beba79 | 210 | if (!inode_owner_or_capable(idmap, inode)) |
2c27c65e | 211 | return -EPERM; |
1da177e4 | 212 | } |
2c27c65e | 213 | |
030b533c JK |
214 | kill_priv: |
215 | /* User has permission for the change */ | |
216 | if (ia_valid & ATTR_KILL_PRIV) { | |
217 | int error; | |
218 | ||
39f60c1c | 219 | error = security_inode_killpriv(idmap, dentry); |
030b533c JK |
220 | if (error) |
221 | return error; | |
222 | } | |
223 | ||
2c27c65e | 224 | return 0; |
1da177e4 | 225 | } |
31051c85 | 226 | EXPORT_SYMBOL(setattr_prepare); |
1da177e4 | 227 | |
25d9e2d1 NP |
228 | /** |
229 | * inode_newsize_ok - may this inode be truncated to a given size | |
230 | * @inode: the inode to be truncated | |
231 | * @offset: the new size to assign to the inode | |
25d9e2d1 | 232 | * |
7bb46a67 NP |
233 | * inode_newsize_ok must be called with i_mutex held. |
234 | * | |
25d9e2d1 NP |
235 | * inode_newsize_ok will check filesystem limits and ulimits to check that the |
236 | * new inode size is within limits. inode_newsize_ok will also send SIGXFSZ | |
237 | * when necessary. Caller must not proceed with inode size change if failure is | |
238 | * returned. @inode must be a file (not directory), with appropriate | |
239 | * permissions to allow truncate (inode_newsize_ok does NOT check these | |
240 | * conditions). | |
3fae1746 MW |
241 | * |
242 | * Return: 0 on success, -ve errno on failure | |
25d9e2d1 NP |
243 | */ |
244 | int inode_newsize_ok(const struct inode *inode, loff_t offset) | |
245 | { | |
e2ebff9c DH |
246 | if (offset < 0) |
247 | return -EINVAL; | |
25d9e2d1 NP |
248 | if (inode->i_size < offset) { |
249 | unsigned long limit; | |
250 | ||
d554ed89 | 251 | limit = rlimit(RLIMIT_FSIZE); |
25d9e2d1 NP |
252 | if (limit != RLIM_INFINITY && offset > limit) |
253 | goto out_sig; | |
254 | if (offset > inode->i_sb->s_maxbytes) | |
255 | goto out_big; | |
256 | } else { | |
257 | /* | |
258 | * truncation of in-use swapfiles is disallowed - it would | |
259 | * cause subsequent swapout to scribble on the now-freed | |
260 | * blocks. | |
261 | */ | |
262 | if (IS_SWAPFILE(inode)) | |
263 | return -ETXTBSY; | |
264 | } | |
265 | ||
266 | return 0; | |
267 | out_sig: | |
268 | send_sig(SIGXFSZ, current, 0); | |
269 | out_big: | |
270 | return -EFBIG; | |
271 | } | |
272 | EXPORT_SYMBOL(inode_newsize_ok); | |
273 | ||
7bb46a67 | 274 | /** |
6a1a90ad | 275 | * setattr_copy - copy simple metadata updates into the generic inode |
c1632a0f | 276 | * @idmap: idmap of the mount the inode was found from |
7bb46a67 NP |
277 | * @inode: the inode to be updated |
278 | * @attr: the new attributes | |
279 | * | |
6a1a90ad | 280 | * setattr_copy must be called with i_mutex held. |
7bb46a67 | 281 | * |
6a1a90ad | 282 | * setattr_copy updates the inode's metadata with that specified |
b27c82e1 | 283 | * in attr on idmapped mounts. Necessary permission checks to determine |
2f221d6f CB |
284 | * whether or not the S_ISGID property needs to be removed are performed with |
285 | * the correct idmapped mount permission helpers. | |
286 | * Noticeably missing is inode size update, which is more complex | |
2c27c65e | 287 | * as it requires pagecache updates. |
7bb46a67 | 288 | * |
c1632a0f CB |
289 | * If the inode has been found through an idmapped mount the idmap of |
290 | * the vfsmount must be passed through @idmap. This function will then | |
291 | * take care to map the inode according to @idmap before checking | |
2f221d6f | 292 | * permissions. On non-idmapped mounts or if permission checking is to be |
c1632a0f | 293 | * performed on the raw inode simply pass @nop_mnt_idmap. |
2f221d6f | 294 | * |
7bb46a67 NP |
295 | * The inode is not marked as dirty after this operation. The rationale is |
296 | * that for "simple" filesystems, the struct inode is the inode storage. | |
297 | * The caller is free to mark the inode dirty afterwards if needed. | |
298 | */ | |
c1632a0f | 299 | void setattr_copy(struct mnt_idmap *idmap, struct inode *inode, |
2f221d6f | 300 | const struct iattr *attr) |
1da177e4 LT |
301 | { |
302 | unsigned int ia_valid = attr->ia_valid; | |
4a30131e | 303 | |
0dbe12f2 CB |
304 | i_uid_update(idmap, attr, inode); |
305 | i_gid_update(idmap, attr, inode); | |
eb31e2f6 | 306 | if (ia_valid & ATTR_ATIME) |
16a94965 | 307 | inode_set_atime_to_ts(inode, attr->ia_atime); |
eb31e2f6 | 308 | if (ia_valid & ATTR_MTIME) |
16a94965 | 309 | inode_set_mtime_to_ts(inode, attr->ia_mtime); |
eb31e2f6 | 310 | if (ia_valid & ATTR_CTIME) |
2276e5ba | 311 | inode_set_ctime_to_ts(inode, attr->ia_ctime); |
1da177e4 LT |
312 | if (ia_valid & ATTR_MODE) { |
313 | umode_t mode = attr->ia_mode; | |
9452e93e | 314 | if (!in_group_or_capable(idmap, inode, |
e67fe633 | 315 | i_gid_into_vfsgid(idmap, inode))) |
1da177e4 LT |
316 | mode &= ~S_ISGID; |
317 | inode->i_mode = mode; | |
318 | } | |
7bb46a67 | 319 | } |
6a1a90ad | 320 | EXPORT_SYMBOL(setattr_copy); |
7bb46a67 | 321 | |
4609e1f1 | 322 | int may_setattr(struct mnt_idmap *idmap, struct inode *inode, |
7bb698f0 AG |
323 | unsigned int ia_valid) |
324 | { | |
325 | int error; | |
326 | ||
327 | if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID | ATTR_TIMES_SET)) { | |
328 | if (IS_IMMUTABLE(inode) || IS_APPEND(inode)) | |
329 | return -EPERM; | |
330 | } | |
331 | ||
332 | /* | |
333 | * If utimes(2) and friends are called with times == NULL (or both | |
334 | * times are UTIME_NOW), then we need to check for write permission | |
335 | */ | |
336 | if (ia_valid & ATTR_TOUCH) { | |
337 | if (IS_IMMUTABLE(inode)) | |
338 | return -EPERM; | |
339 | ||
01beba79 | 340 | if (!inode_owner_or_capable(idmap, inode)) { |
4609e1f1 | 341 | error = inode_permission(idmap, inode, MAY_WRITE); |
7bb698f0 AG |
342 | if (error) |
343 | return error; | |
344 | } | |
345 | } | |
346 | return 0; | |
347 | } | |
348 | EXPORT_SYMBOL(may_setattr); | |
349 | ||
27ac0ffe | 350 | /** |
fe12cfc1 | 351 | * notify_change - modify attributes of a filesystem object |
abf08576 | 352 | * @idmap: idmap of the mount the inode was found from |
27ac0ffe | 353 | * @dentry: object affected |
3fae1746 | 354 | * @attr: new attributes |
27ac0ffe BF |
355 | * @delegated_inode: returns inode, if the inode is delegated |
356 | * | |
357 | * The caller must hold the i_mutex on the affected object. | |
358 | * | |
359 | * If notify_change discovers a delegation in need of breaking, | |
360 | * it will return -EWOULDBLOCK and return a reference to the inode in | |
361 | * delegated_inode. The caller should then break the delegation and | |
362 | * retry. Because breaking a delegation may take a long time, the | |
363 | * caller should drop the i_mutex before doing so. | |
364 | * | |
365 | * Alternatively, a caller may pass NULL for delegated_inode. This may | |
366 | * be appropriate for callers that expect the underlying filesystem not | |
367 | * to be NFS exported. Also, passing NULL is fine for callers holding | |
368 | * the file open for write, as there can be no conflicting delegation in | |
369 | * that case. | |
2f221d6f | 370 | * |
abf08576 CB |
371 | * If the inode has been found through an idmapped mount the idmap of |
372 | * the vfsmount must be passed through @idmap. This function will then | |
373 | * take care to map the inode according to @idmap before checking | |
2f221d6f | 374 | * permissions. On non-idmapped mounts or if permission checking is to be |
abf08576 | 375 | * performed on the raw inode simply pass @nop_mnt_idmap. |
27ac0ffe | 376 | */ |
abf08576 | 377 | int notify_change(struct mnt_idmap *idmap, struct dentry *dentry, |
2f221d6f | 378 | struct iattr *attr, struct inode **delegated_inode) |
1da177e4 LT |
379 | { |
380 | struct inode *inode = dentry->d_inode; | |
8d334acd | 381 | umode_t mode = inode->i_mode; |
1da177e4 | 382 | int error; |
95582b00 | 383 | struct timespec64 now; |
1da177e4 LT |
384 | unsigned int ia_valid = attr->ia_valid; |
385 | ||
5955102c | 386 | WARN_ON_ONCE(!inode_is_locked(inode)); |
c4107b30 | 387 | |
4609e1f1 | 388 | error = may_setattr(idmap, inode, ia_valid); |
7bb698f0 AG |
389 | if (error) |
390 | return error; | |
f2b20f6e | 391 | |
69b45732 | 392 | if ((ia_valid & ATTR_MODE)) { |
5d1f903f CB |
393 | /* |
394 | * Don't allow changing the mode of symlinks: | |
395 | * | |
396 | * (1) The vfs doesn't take the mode of symlinks into account | |
397 | * during permission checking. | |
398 | * (2) This has never worked correctly. Most major filesystems | |
399 | * did return EOPNOTSUPP due to interactions with POSIX ACLs | |
400 | * but did still updated the mode of the symlink. | |
401 | * This inconsistency led system call wrapper providers such | |
402 | * as libc to block changing the mode of symlinks with | |
403 | * EOPNOTSUPP already. | |
404 | * (3) To even do this in the first place one would have to use | |
405 | * specific file descriptors and quite some effort. | |
406 | */ | |
407 | if (S_ISLNK(inode->i_mode)) | |
408 | return -EOPNOTSUPP; | |
409 | ||
69b45732 | 410 | /* Flag setting protected by i_mutex */ |
5d1f903f | 411 | if (is_sxid(attr->ia_mode)) |
69b45732 AK |
412 | inode->i_flags &= ~S_NOSEC; |
413 | } | |
414 | ||
c2050a45 | 415 | now = current_time(inode); |
1da177e4 LT |
416 | |
417 | attr->ia_ctime = now; | |
418 | if (!(ia_valid & ATTR_ATIME_SET)) | |
419 | attr->ia_atime = now; | |
eb31e2f6 AG |
420 | else |
421 | attr->ia_atime = timestamp_truncate(attr->ia_atime, inode); | |
1da177e4 LT |
422 | if (!(ia_valid & ATTR_MTIME_SET)) |
423 | attr->ia_mtime = now; | |
eb31e2f6 AG |
424 | else |
425 | attr->ia_mtime = timestamp_truncate(attr->ia_mtime, inode); | |
426 | ||
b5376771 | 427 | if (ia_valid & ATTR_KILL_PRIV) { |
b5376771 | 428 | error = security_inode_need_killpriv(dentry); |
030b533c | 429 | if (error < 0) |
b5376771 | 430 | return error; |
030b533c JK |
431 | if (error == 0) |
432 | ia_valid = attr->ia_valid &= ~ATTR_KILL_PRIV; | |
b5376771 | 433 | } |
6de0ec00 JL |
434 | |
435 | /* | |
436 | * We now pass ATTR_KILL_S*ID to the lower level setattr function so | |
437 | * that the function has the ability to reinterpret a mode change | |
438 | * that's due to these bits. This adds an implicit restriction that | |
439 | * no function will ever call notify_change with both ATTR_MODE and | |
440 | * ATTR_KILL_S*ID set. | |
441 | */ | |
442 | if ((ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) && | |
443 | (ia_valid & ATTR_MODE)) | |
444 | BUG(); | |
445 | ||
1da177e4 | 446 | if (ia_valid & ATTR_KILL_SUID) { |
1da177e4 | 447 | if (mode & S_ISUID) { |
6de0ec00 JL |
448 | ia_valid = attr->ia_valid |= ATTR_MODE; |
449 | attr->ia_mode = (inode->i_mode & ~S_ISUID); | |
1da177e4 LT |
450 | } |
451 | } | |
452 | if (ia_valid & ATTR_KILL_SGID) { | |
ed5a7047 | 453 | if (mode & S_ISGID) { |
1da177e4 LT |
454 | if (!(ia_valid & ATTR_MODE)) { |
455 | ia_valid = attr->ia_valid |= ATTR_MODE; | |
456 | attr->ia_mode = inode->i_mode; | |
457 | } | |
458 | attr->ia_mode &= ~S_ISGID; | |
459 | } | |
460 | } | |
6de0ec00 | 461 | if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID))) |
1da177e4 LT |
462 | return 0; |
463 | ||
a475acf0 SF |
464 | /* |
465 | * Verify that uid/gid changes are valid in the target | |
466 | * namespace of the superblock. | |
467 | */ | |
468 | if (ia_valid & ATTR_UID && | |
4d7ca409 | 469 | !vfsuid_has_fsmapping(idmap, inode->i_sb->s_user_ns, |
b27c82e1 | 470 | attr->ia_vfsuid)) |
a475acf0 SF |
471 | return -EOVERFLOW; |
472 | if (ia_valid & ATTR_GID && | |
4d7ca409 | 473 | !vfsgid_has_fsmapping(idmap, inode->i_sb->s_user_ns, |
b27c82e1 | 474 | attr->ia_vfsgid)) |
a475acf0 SF |
475 | return -EOVERFLOW; |
476 | ||
0bd23d09 EB |
477 | /* Don't allow modifications of files with invalid uids or |
478 | * gids unless those uids & gids are being made valid. | |
479 | */ | |
2f221d6f | 480 | if (!(ia_valid & ATTR_UID) && |
e67fe633 | 481 | !vfsuid_valid(i_uid_into_vfsuid(idmap, inode))) |
0bd23d09 | 482 | return -EOVERFLOW; |
2f221d6f | 483 | if (!(ia_valid & ATTR_GID) && |
e67fe633 | 484 | !vfsgid_valid(i_gid_into_vfsgid(idmap, inode))) |
0bd23d09 EB |
485 | return -EOVERFLOW; |
486 | ||
c1632a0f | 487 | error = security_inode_setattr(idmap, dentry, attr); |
27ac0ffe BF |
488 | if (error) |
489 | return error; | |
7e8ae848 JL |
490 | |
491 | /* | |
492 | * If ATTR_DELEG is set, then these attributes are being set on | |
493 | * behalf of the holder of a write delegation. We want to avoid | |
494 | * breaking the delegation in this case. | |
495 | */ | |
496 | if (!(ia_valid & ATTR_DELEG)) { | |
497 | error = try_break_deleg(inode, delegated_inode); | |
498 | if (error) | |
499 | return error; | |
500 | } | |
a77b72da | 501 | |
eef2380c | 502 | if (inode->i_op->setattr) |
c1632a0f | 503 | error = inode->i_op->setattr(idmap, dentry, attr); |
eef2380c | 504 | else |
c1632a0f | 505 | error = simple_setattr(idmap, dentry, attr); |
1da177e4 | 506 | |
975d2943 | 507 | if (!error) { |
0eeca283 | 508 | fsnotify_change(dentry, ia_valid); |
77fa6f31 | 509 | security_inode_post_setattr(idmap, dentry, ia_valid); |
975d2943 | 510 | } |
0eeca283 | 511 | |
1da177e4 LT |
512 | return error; |
513 | } | |
1da177e4 | 514 | EXPORT_SYMBOL(notify_change); |