Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/attr.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 6 | * changes by Thomas Schoebel-Theuer |
| 7 | */ |
| 8 | |
Paul Gortmaker | 630d9c4 | 2011-11-16 23:57:37 -0500 | [diff] [blame] | 9 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/time.h> |
| 11 | #include <linux/mm.h> |
| 12 | #include <linux/string.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 13 | #include <linux/sched/signal.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 14 | #include <linux/capability.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 15 | #include <linux/fsnotify.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/fcntl.h> |
Jeff Layton | 5970e15 | 2022-11-20 09:15:34 -0500 | [diff] [blame] | 17 | #include <linux/filelock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/security.h> |
Mimi Zohar | 975d294 | 2011-03-09 14:39:57 -0500 | [diff] [blame] | 19 | #include <linux/evm.h> |
Mimi Zohar | 9957a50 | 2011-03-09 22:57:53 -0500 | [diff] [blame] | 20 | #include <linux/ima.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Christian Brauner | 11c2a87 | 2022-10-17 17:06:34 +0200 | [diff] [blame] | 22 | #include "internal.h" |
| 23 | |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 24 | /** |
| 25 | * setattr_should_drop_sgid - determine whether the setgid bit needs to be |
| 26 | * removed |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 27 | * @idmap: idmap of the mount @inode was found from |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 28 | * @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 Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 37 | int setattr_should_drop_sgid(struct mnt_idmap *idmap, |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 38 | 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 Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 46 | if (!in_group_or_capable(idmap, inode, i_gid_into_vfsgid(idmap, inode))) |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 47 | return ATTR_KILL_SGID; |
| 48 | return 0; |
| 49 | } |
Christian Brauner | 4f704d9 | 2023-03-14 12:51:10 +0100 | [diff] [blame] | 50 | EXPORT_SYMBOL(setattr_should_drop_sgid); |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 51 | |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 52 | /** |
| 53 | * setattr_should_drop_suidgid - determine whether the set{g,u}id bit needs to |
| 54 | * be dropped |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 55 | * @idmap: idmap of the mount @inode was found from |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 56 | * @inode: inode to check |
Christian Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 57 | * |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 58 | * 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 Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 66 | */ |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 67 | int setattr_should_drop_suidgid(struct mnt_idmap *idmap, |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 68 | struct inode *inode) |
Christian Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 69 | { |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 70 | umode_t mode = inode->i_mode; |
Christian Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 71 | int kill = 0; |
| 72 | |
| 73 | /* suid always must be killed */ |
| 74 | if (unlikely(mode & S_ISUID)) |
| 75 | kill = ATTR_KILL_SUID; |
| 76 | |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 77 | kill |= setattr_should_drop_sgid(idmap, inode); |
Christian Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 78 | |
| 79 | if (unlikely(kill && !capable(CAP_FSETID) && S_ISREG(mode))) |
| 80 | return kill; |
| 81 | |
| 82 | return 0; |
| 83 | } |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 84 | EXPORT_SYMBOL(setattr_should_drop_suidgid); |
Christian Brauner | e243e3f | 2022-10-17 17:06:35 +0200 | [diff] [blame] | 85 | |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 86 | /** |
| 87 | * chown_ok - verify permissions to chown inode |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 88 | * @idmap: idmap of the mount @inode was found from |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 89 | * @inode: inode to check permissions on |
Christian Brauner | 81a1807 | 2022-06-27 15:40:45 +0200 | [diff] [blame] | 90 | * @ia_vfsuid: uid to chown @inode to |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 91 | * |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 92 | * 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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 95 | * permissions. On non-idmapped mounts or if permission checking is to be |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 96 | * performed on the raw inode simply pass @nop_mnt_idmap. |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 97 | */ |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 98 | static bool chown_ok(struct mnt_idmap *idmap, |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 99 | const struct inode *inode, vfsuid_t ia_vfsuid) |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 100 | { |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 101 | vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 102 | if (vfsuid_eq_kuid(vfsuid, current_fsuid()) && |
| 103 | vfsuid_eq(ia_vfsuid, vfsuid)) |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 104 | return true; |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 105 | if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN)) |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 106 | return true; |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 107 | if (!vfsuid_valid(vfsuid) && |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 108 | ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) |
| 109 | return true; |
| 110 | return false; |
| 111 | } |
| 112 | |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 113 | /** |
| 114 | * chgrp_ok - verify permissions to chgrp inode |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 115 | * @idmap: idmap of the mount @inode was found from |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 116 | * @inode: inode to check permissions on |
Christian Brauner | 81a1807 | 2022-06-27 15:40:45 +0200 | [diff] [blame] | 117 | * @ia_vfsgid: gid to chown @inode to |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 118 | * |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 119 | * 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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 122 | * permissions. On non-idmapped mounts or if permission checking is to be |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 123 | * performed on the raw inode simply pass @nop_mnt_idmap. |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 124 | */ |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 125 | static bool chgrp_ok(struct mnt_idmap *idmap, |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 126 | const struct inode *inode, vfsgid_t ia_vfsgid) |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 127 | { |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 128 | vfsgid_t vfsgid = i_gid_into_vfsgid(idmap, inode); |
| 129 | vfsuid_t vfsuid = i_uid_into_vfsuid(idmap, inode); |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 130 | if (vfsuid_eq_kuid(vfsuid, current_fsuid())) { |
| 131 | if (vfsgid_eq(ia_vfsgid, vfsgid)) |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 132 | return true; |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 133 | if (vfsgid_in_group_p(ia_vfsgid)) |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 134 | return true; |
| 135 | } |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 136 | if (capable_wrt_inode_uidgid(idmap, inode, CAP_CHOWN)) |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 137 | return true; |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 138 | if (!vfsgid_valid(vfsgid) && |
Eric W. Biederman | 0031181 | 2016-10-15 18:36:59 -0500 | [diff] [blame] | 139 | ns_capable(inode->i_sb->s_user_ns, CAP_CHOWN)) |
| 140 | return true; |
| 141 | return false; |
| 142 | } |
| 143 | |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 144 | /** |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 145 | * setattr_prepare - check if attribute changes to a dentry are allowed |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 146 | * @idmap: idmap of the mount the inode was found from |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 147 | * @dentry: dentry to check |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 148 | * @attr: attributes to change |
| 149 | * |
| 150 | * Check if we are allowed to change the attributes contained in @attr |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 151 | * 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 Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 155 | * |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 156 | * 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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 159 | * permissions. On non-idmapped mounts or if permission checking is to be |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 160 | * performed on the raw inode simply passs @nop_mnt_idmap. |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 161 | * |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 162 | * Should be called as the first thing in ->setattr implementations, |
| 163 | * possibly after taking additional locks. |
| 164 | */ |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 165 | int setattr_prepare(struct mnt_idmap *idmap, struct dentry *dentry, |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 166 | struct iattr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 168 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | unsigned int ia_valid = attr->ia_valid; |
| 170 | |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 171 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* If force is set do it anyway. */ |
| 182 | if (ia_valid & ATTR_FORCE) |
Jan Kara | 030b533 | 2016-05-26 17:21:32 +0200 | [diff] [blame] | 183 | goto kill_priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | /* Make sure a caller can chown. */ |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 186 | if ((ia_valid & ATTR_UID) && |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 187 | !chown_ok(idmap, inode, attr->ia_vfsuid)) |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 188 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | /* Make sure caller can chgrp. */ |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 191 | if ((ia_valid & ATTR_GID) && |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 192 | !chgrp_ok(idmap, inode, attr->ia_vfsgid)) |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 193 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
| 195 | /* Make sure a caller can chmod. */ |
| 196 | if (ia_valid & ATTR_MODE) { |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 197 | vfsgid_t vfsgid; |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 198 | |
Christian Brauner | 01beba7 | 2023-01-13 12:49:26 +0100 | [diff] [blame] | 199 | if (!inode_owner_or_capable(idmap, inode)) |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 200 | return -EPERM; |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 201 | |
| 202 | if (ia_valid & ATTR_GID) |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 203 | vfsgid = attr->ia_vfsgid; |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 204 | else |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 205 | vfsgid = i_gid_into_vfsgid(idmap, inode); |
Christian Brauner | 168f912 | 2022-06-13 13:15:17 +0200 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* Also check the setgid bit! */ |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 208 | if (!in_group_or_capable(idmap, inode, vfsgid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | attr->ia_mode &= ~S_ISGID; |
| 210 | } |
| 211 | |
| 212 | /* Check for setting the inode time. */ |
Miklos Szeredi | 9767d74 | 2008-07-01 15:01:26 +0200 | [diff] [blame] | 213 | if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)) { |
Christian Brauner | 01beba7 | 2023-01-13 12:49:26 +0100 | [diff] [blame] | 214 | if (!inode_owner_or_capable(idmap, inode)) |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 215 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | } |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 217 | |
Jan Kara | 030b533 | 2016-05-26 17:21:32 +0200 | [diff] [blame] | 218 | kill_priv: |
| 219 | /* User has permission for the change */ |
| 220 | if (ia_valid & ATTR_KILL_PRIV) { |
| 221 | int error; |
| 222 | |
Christian Brauner | 39f60c1 | 2023-01-13 12:49:23 +0100 | [diff] [blame] | 223 | error = security_inode_killpriv(idmap, dentry); |
Jan Kara | 030b533 | 2016-05-26 17:21:32 +0200 | [diff] [blame] | 224 | if (error) |
| 225 | return error; |
| 226 | } |
| 227 | |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 228 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
Jan Kara | 31051c8 | 2016-05-26 16:55:18 +0200 | [diff] [blame] | 230 | EXPORT_SYMBOL(setattr_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 232 | /** |
| 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.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 236 | * |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 237 | * inode_newsize_ok must be called with i_mutex held. |
| 238 | * |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 239 | * 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 Wilcox | 3fae174 | 2018-07-03 08:08:34 -0700 | [diff] [blame] | 245 | * |
| 246 | * Return: 0 on success, -ve errno on failure |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 247 | */ |
| 248 | int inode_newsize_ok(const struct inode *inode, loff_t offset) |
| 249 | { |
David Howells | e2ebff9 | 2022-08-08 09:52:35 +0100 | [diff] [blame] | 250 | if (offset < 0) |
| 251 | return -EINVAL; |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 252 | if (inode->i_size < offset) { |
| 253 | unsigned long limit; |
| 254 | |
Jiri Slaby | d554ed89 | 2010-03-05 13:42:42 -0800 | [diff] [blame] | 255 | limit = rlimit(RLIMIT_FSIZE); |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 256 | 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; |
| 271 | out_sig: |
| 272 | send_sig(SIGXFSZ, current, 0); |
| 273 | out_big: |
| 274 | return -EFBIG; |
| 275 | } |
| 276 | EXPORT_SYMBOL(inode_newsize_ok); |
| 277 | |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 278 | /** |
Christoph Hellwig | 6a1a90a | 2010-06-04 11:30:00 +0200 | [diff] [blame] | 279 | * setattr_copy - copy simple metadata updates into the generic inode |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 280 | * @idmap: idmap of the mount the inode was found from |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 281 | * @inode: the inode to be updated |
| 282 | * @attr: the new attributes |
| 283 | * |
Christoph Hellwig | 6a1a90a | 2010-06-04 11:30:00 +0200 | [diff] [blame] | 284 | * setattr_copy must be called with i_mutex held. |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 285 | * |
Christoph Hellwig | 6a1a90a | 2010-06-04 11:30:00 +0200 | [diff] [blame] | 286 | * setattr_copy updates the inode's metadata with that specified |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 287 | * in attr on idmapped mounts. Necessary permission checks to determine |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 288 | * 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 Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 291 | * as it requires pagecache updates. |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 292 | * |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 293 | * 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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 296 | * permissions. On non-idmapped mounts or if permission checking is to be |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 297 | * performed on the raw inode simply pass @nop_mnt_idmap. |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 298 | * |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 299 | * 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 Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 303 | void setattr_copy(struct mnt_idmap *idmap, struct inode *inode, |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 304 | const struct iattr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { |
| 306 | unsigned int ia_valid = attr->ia_valid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
Christian Brauner | 0dbe12f | 2023-01-13 12:49:29 +0100 | [diff] [blame] | 308 | i_uid_update(idmap, attr, inode); |
| 309 | i_gid_update(idmap, attr, inode); |
Amir Goldstein | eb31e2f | 2019-11-24 21:31:45 +0200 | [diff] [blame] | 310 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | if (ia_valid & ATTR_MODE) { |
| 317 | umode_t mode = attr->ia_mode; |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 318 | if (!in_group_or_capable(idmap, inode, |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 319 | i_gid_into_vfsgid(idmap, inode))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | mode &= ~S_ISGID; |
| 321 | inode->i_mode = mode; |
| 322 | } |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 323 | } |
Christoph Hellwig | 6a1a90a | 2010-06-04 11:30:00 +0200 | [diff] [blame] | 324 | EXPORT_SYMBOL(setattr_copy); |
npiggin@suse.de | 7bb46a6 | 2010-05-27 01:05:33 +1000 | [diff] [blame] | 325 | |
Christian Brauner | 4609e1f | 2023-01-13 12:49:22 +0100 | [diff] [blame] | 326 | int may_setattr(struct mnt_idmap *idmap, struct inode *inode, |
Andreas Gruenbacher | 7bb698f | 2021-07-28 07:47:33 -0500 | [diff] [blame] | 327 | 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 Brauner | 01beba7 | 2023-01-13 12:49:26 +0100 | [diff] [blame] | 344 | if (!inode_owner_or_capable(idmap, inode)) { |
Christian Brauner | 4609e1f | 2023-01-13 12:49:22 +0100 | [diff] [blame] | 345 | error = inode_permission(idmap, inode, MAY_WRITE); |
Andreas Gruenbacher | 7bb698f | 2021-07-28 07:47:33 -0500 | [diff] [blame] | 346 | if (error) |
| 347 | return error; |
| 348 | } |
| 349 | } |
| 350 | return 0; |
| 351 | } |
| 352 | EXPORT_SYMBOL(may_setattr); |
| 353 | |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 354 | /** |
| 355 | * notify_change - modify attributes of a filesytem object |
Christian Brauner | abf0857 | 2023-01-13 12:49:10 +0100 | [diff] [blame] | 356 | * @idmap: idmap of the mount the inode was found from |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 357 | * @dentry: object affected |
Matthew Wilcox | 3fae174 | 2018-07-03 08:08:34 -0700 | [diff] [blame] | 358 | * @attr: new attributes |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 359 | * @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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 374 | * |
Christian Brauner | abf0857 | 2023-01-13 12:49:10 +0100 | [diff] [blame] | 375 | * 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 Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 378 | * permissions. On non-idmapped mounts or if permission checking is to be |
Christian Brauner | abf0857 | 2023-01-13 12:49:10 +0100 | [diff] [blame] | 379 | * performed on the raw inode simply pass @nop_mnt_idmap. |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 380 | */ |
Christian Brauner | abf0857 | 2023-01-13 12:49:10 +0100 | [diff] [blame] | 381 | int notify_change(struct mnt_idmap *idmap, struct dentry *dentry, |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 382 | struct iattr *attr, struct inode **delegated_inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
| 384 | struct inode *inode = dentry->d_inode; |
Al Viro | 8d334ac | 2011-07-24 23:21:59 -0400 | [diff] [blame] | 385 | umode_t mode = inode->i_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | int error; |
Deepa Dinamani | 95582b0 | 2018-05-08 19:36:02 -0700 | [diff] [blame] | 387 | struct timespec64 now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | unsigned int ia_valid = attr->ia_valid; |
| 389 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 390 | WARN_ON_ONCE(!inode_is_locked(inode)); |
Andrew Morton | c4107b3 | 2012-06-20 09:55:58 +1000 | [diff] [blame] | 391 | |
Christian Brauner | 4609e1f | 2023-01-13 12:49:22 +0100 | [diff] [blame] | 392 | error = may_setattr(idmap, inode, ia_valid); |
Andreas Gruenbacher | 7bb698f | 2021-07-28 07:47:33 -0500 | [diff] [blame] | 393 | if (error) |
| 394 | return error; |
Miklos Szeredi | f2b20f6 | 2016-09-16 12:44:20 +0200 | [diff] [blame] | 395 | |
Andi Kleen | 69b4573 | 2011-05-28 08:25:51 -0700 | [diff] [blame] | 396 | if ((ia_valid & ATTR_MODE)) { |
Al Viro | 8d334ac | 2011-07-24 23:21:59 -0400 | [diff] [blame] | 397 | umode_t amode = attr->ia_mode; |
Andi Kleen | 69b4573 | 2011-05-28 08:25:51 -0700 | [diff] [blame] | 398 | /* Flag setting protected by i_mutex */ |
| 399 | if (is_sxid(amode)) |
| 400 | inode->i_flags &= ~S_NOSEC; |
| 401 | } |
| 402 | |
Deepa Dinamani | c2050a4 | 2016-09-14 07:48:06 -0700 | [diff] [blame] | 403 | now = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | |
| 405 | attr->ia_ctime = now; |
| 406 | if (!(ia_valid & ATTR_ATIME_SET)) |
| 407 | attr->ia_atime = now; |
Amir Goldstein | eb31e2f | 2019-11-24 21:31:45 +0200 | [diff] [blame] | 408 | else |
| 409 | attr->ia_atime = timestamp_truncate(attr->ia_atime, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | if (!(ia_valid & ATTR_MTIME_SET)) |
| 411 | attr->ia_mtime = now; |
Amir Goldstein | eb31e2f | 2019-11-24 21:31:45 +0200 | [diff] [blame] | 412 | else |
| 413 | attr->ia_mtime = timestamp_truncate(attr->ia_mtime, inode); |
| 414 | |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 415 | if (ia_valid & ATTR_KILL_PRIV) { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 416 | error = security_inode_need_killpriv(dentry); |
Jan Kara | 030b533 | 2016-05-26 17:21:32 +0200 | [diff] [blame] | 417 | if (error < 0) |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 418 | return error; |
Jan Kara | 030b533 | 2016-05-26 17:21:32 +0200 | [diff] [blame] | 419 | if (error == 0) |
| 420 | ia_valid = attr->ia_valid &= ~ATTR_KILL_PRIV; |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 421 | } |
Jeff Layton | 6de0ec0 | 2007-10-18 03:05:20 -0700 | [diff] [blame] | 422 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | if (ia_valid & ATTR_KILL_SUID) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | if (mode & S_ISUID) { |
Jeff Layton | 6de0ec0 | 2007-10-18 03:05:20 -0700 | [diff] [blame] | 436 | ia_valid = attr->ia_valid |= ATTR_MODE; |
| 437 | attr->ia_mode = (inode->i_mode & ~S_ISUID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | } |
| 439 | } |
| 440 | if (ia_valid & ATTR_KILL_SGID) { |
Christian Brauner | ed5a704 | 2022-10-17 17:06:37 +0200 | [diff] [blame] | 441 | if (mode & S_ISGID) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | 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 Layton | 6de0ec0 | 2007-10-18 03:05:20 -0700 | [diff] [blame] | 449 | if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return 0; |
| 451 | |
Seth Forshee | a475acf | 2016-04-26 14:36:25 -0500 | [diff] [blame] | 452 | /* |
| 453 | * Verify that uid/gid changes are valid in the target |
| 454 | * namespace of the superblock. |
| 455 | */ |
| 456 | if (ia_valid & ATTR_UID && |
Christian Brauner | 4d7ca40 | 2023-01-13 12:49:32 +0100 | [diff] [blame] | 457 | !vfsuid_has_fsmapping(idmap, inode->i_sb->s_user_ns, |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 458 | attr->ia_vfsuid)) |
Seth Forshee | a475acf | 2016-04-26 14:36:25 -0500 | [diff] [blame] | 459 | return -EOVERFLOW; |
| 460 | if (ia_valid & ATTR_GID && |
Christian Brauner | 4d7ca40 | 2023-01-13 12:49:32 +0100 | [diff] [blame] | 461 | !vfsgid_has_fsmapping(idmap, inode->i_sb->s_user_ns, |
Christian Brauner | b27c82e | 2022-06-21 16:14:54 +0200 | [diff] [blame] | 462 | attr->ia_vfsgid)) |
Seth Forshee | a475acf | 2016-04-26 14:36:25 -0500 | [diff] [blame] | 463 | return -EOVERFLOW; |
| 464 | |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 465 | /* Don't allow modifications of files with invalid uids or |
| 466 | * gids unless those uids & gids are being made valid. |
| 467 | */ |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 468 | if (!(ia_valid & ATTR_UID) && |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 469 | !vfsuid_valid(i_uid_into_vfsuid(idmap, inode))) |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 470 | return -EOVERFLOW; |
Christian Brauner | 2f221d6 | 2021-01-21 14:19:26 +0100 | [diff] [blame] | 471 | if (!(ia_valid & ATTR_GID) && |
Christian Brauner | e67fe63 | 2023-01-13 12:49:30 +0100 | [diff] [blame] | 472 | !vfsgid_valid(i_gid_into_vfsgid(idmap, inode))) |
Eric W. Biederman | 0bd23d09 | 2016-06-29 14:54:46 -0500 | [diff] [blame] | 473 | return -EOVERFLOW; |
| 474 | |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 475 | error = security_inode_setattr(idmap, dentry, attr); |
Miklos Szeredi | a77b72d | 2008-07-30 14:06:22 +0200 | [diff] [blame] | 476 | if (error) |
| 477 | return error; |
J. Bruce Fields | 27ac0ff | 2011-09-20 17:19:26 -0400 | [diff] [blame] | 478 | error = try_break_deleg(inode, delegated_inode); |
| 479 | if (error) |
| 480 | return error; |
Miklos Szeredi | a77b72d | 2008-07-30 14:06:22 +0200 | [diff] [blame] | 481 | |
Christoph Hellwig | eef2380 | 2010-06-04 11:30:01 +0200 | [diff] [blame] | 482 | if (inode->i_op->setattr) |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 483 | error = inode->i_op->setattr(idmap, dentry, attr); |
Christoph Hellwig | eef2380 | 2010-06-04 11:30:01 +0200 | [diff] [blame] | 484 | else |
Christian Brauner | c1632a0 | 2023-01-13 12:49:11 +0100 | [diff] [blame] | 485 | error = simple_setattr(idmap, dentry, attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Mimi Zohar | 975d294 | 2011-03-09 14:39:57 -0500 | [diff] [blame] | 487 | if (!error) { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 488 | fsnotify_change(dentry, ia_valid); |
Christian Brauner | 39f60c1 | 2023-01-13 12:49:23 +0100 | [diff] [blame] | 489 | ima_inode_post_setattr(idmap, dentry); |
Mimi Zohar | 975d294 | 2011-03-09 14:39:57 -0500 | [diff] [blame] | 490 | evm_inode_post_setattr(dentry, ia_valid); |
| 491 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | return error; |
| 494 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | EXPORT_SYMBOL(notify_change); |