Blame view

fs/attr.c 9.21 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
  /*
   *  linux/fs/attr.c
   *
   *  Copyright (C) 1991, 1992  Linus Torvalds
   *  changes by Thomas Schoebel-Theuer
   */
630d9c472   Paul Gortmaker   fs: reduce the us...
8
  #include <linux/export.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
  #include <linux/time.h>
  #include <linux/mm.h>
  #include <linux/string.h>
3f07c0144   Ingo Molnar   sched/headers: Pr...
12
  #include <linux/sched/signal.h>
16f7e0fe2   Randy Dunlap   [PATCH] capable/c...
13
  #include <linux/capability.h>
0eeca2830   Robert Love   [PATCH] inotify
14
  #include <linux/fsnotify.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  #include <linux/fcntl.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
  #include <linux/security.h>
975d29437   Mimi Zohar   evm: imbed evm_in...
17
  #include <linux/evm.h>
9957a5043   Mimi Zohar   ima: add inode_po...
18
  #include <linux/ima.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19

2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
20
  /**
31051c85b   Jan Kara   fs: Give dentry t...
21
22
   * setattr_prepare - check if attribute changes to a dentry are allowed
   * @dentry:	dentry to check
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
23
24
25
   * @attr:	attributes to change
   *
   * Check if we are allowed to change the attributes contained in @attr
31051c85b   Jan Kara   fs: Give dentry t...
26
27
28
29
   * in the given dentry.  This includes the normal unix access permission
   * checks, as well as checks for rlimits and others. The function also clears
   * SGID bit from mode if user is not allowed to set it. Also file capabilities
   * and IMA extended attributes are cleared if ATTR_KILL_PRIV is set.
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
30
31
32
33
   *
   * Should be called as the first thing in ->setattr implementations,
   * possibly after taking additional locks.
   */
31051c85b   Jan Kara   fs: Give dentry t...
34
  int setattr_prepare(struct dentry *dentry, struct iattr *attr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
  {
31051c85b   Jan Kara   fs: Give dentry t...
36
  	struct inode *inode = d_inode(dentry);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
  	unsigned int ia_valid = attr->ia_valid;
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
38
39
40
41
42
43
44
45
46
  	/*
  	 * First check size constraints.  These can't be overriden using
  	 * ATTR_FORCE.
  	 */
  	if (ia_valid & ATTR_SIZE) {
  		int error = inode_newsize_ok(inode, attr->ia_size);
  		if (error)
  			return error;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
  	/* If force is set do it anyway. */
  	if (ia_valid & ATTR_FORCE)
030b533c4   Jan Kara   fs: Avoid prematu...
49
  		goto kill_priv;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
  
  	/* Make sure a caller can chown. */
  	if ((ia_valid & ATTR_UID) &&
8e96e3b7b   Eric W. Biederman   userns: Use uid_e...
53
  	    (!uid_eq(current_fsuid(), inode->i_uid) ||
7fa294c89   Eric W. Biederman   userns: Allow cho...
54
  	     !uid_eq(attr->ia_uid, inode->i_uid)) &&
23adbe12e   Andy Lutomirski   fs,userns: Change...
55
  	    !capable_wrt_inode_uidgid(inode, CAP_CHOWN))
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
56
  		return -EPERM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
  
  	/* Make sure caller can chgrp. */
  	if ((ia_valid & ATTR_GID) &&
8e96e3b7b   Eric W. Biederman   userns: Use uid_e...
60
61
  	    (!uid_eq(current_fsuid(), inode->i_uid) ||
  	    (!in_group_p(attr->ia_gid) && !gid_eq(attr->ia_gid, inode->i_gid))) &&
23adbe12e   Andy Lutomirski   fs,userns: Change...
62
  	    !capable_wrt_inode_uidgid(inode, CAP_CHOWN))
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
63
  		return -EPERM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
65
66
  
  	/* Make sure a caller can chmod. */
  	if (ia_valid & ATTR_MODE) {
2e1496707   Serge E. Hallyn   userns: rename is...
67
  		if (!inode_owner_or_capable(inode))
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
68
  			return -EPERM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
  		/* Also check the setgid bit! */
  		if (!in_group_p((ia_valid & ATTR_GID) ? attr->ia_gid :
7fa294c89   Eric W. Biederman   userns: Allow cho...
71
  				inode->i_gid) &&
23adbe12e   Andy Lutomirski   fs,userns: Change...
72
  		    !capable_wrt_inode_uidgid(inode, CAP_FSETID))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
76
  			attr->ia_mode &= ~S_ISGID;
  	}
  
  	/* Check for setting the inode time. */
9767d7495   Miklos Szeredi   [patch 1/4] vfs: ...
77
  	if (ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)) {
2e1496707   Serge E. Hallyn   userns: rename is...
78
  		if (!inode_owner_or_capable(inode))
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
79
  			return -EPERM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
  	}
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
81

030b533c4   Jan Kara   fs: Avoid prematu...
82
83
84
85
86
87
88
89
90
  kill_priv:
  	/* User has permission for the change */
  	if (ia_valid & ATTR_KILL_PRIV) {
  		int error;
  
  		error = security_inode_killpriv(dentry);
  		if (error)
  			return error;
  	}
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
91
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
  }
31051c85b   Jan Kara   fs: Give dentry t...
93
  EXPORT_SYMBOL(setattr_prepare);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94

25d9e2d15   npiggin@suse.de   truncate: new hel...
95
96
97
98
99
100
  /**
   * inode_newsize_ok - may this inode be truncated to a given size
   * @inode:	the inode to be truncated
   * @offset:	the new size to assign to the inode
   * @Returns:	0 on success, -ve errno on failure
   *
7bb46a673   npiggin@suse.de   fs: introduce new...
101
102
   * inode_newsize_ok must be called with i_mutex held.
   *
25d9e2d15   npiggin@suse.de   truncate: new hel...
103
104
105
106
107
108
   * inode_newsize_ok will check filesystem limits and ulimits to check that the
   * new inode size is within limits. inode_newsize_ok will also send SIGXFSZ
   * when necessary. Caller must not proceed with inode size change if failure is
   * returned. @inode must be a file (not directory), with appropriate
   * permissions to allow truncate (inode_newsize_ok does NOT check these
   * conditions).
25d9e2d15   npiggin@suse.de   truncate: new hel...
109
110
111
112
113
   */
  int inode_newsize_ok(const struct inode *inode, loff_t offset)
  {
  	if (inode->i_size < offset) {
  		unsigned long limit;
d554ed895   Jiri Slaby   fs: use rlimit he...
114
  		limit = rlimit(RLIMIT_FSIZE);
25d9e2d15   npiggin@suse.de   truncate: new hel...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
  		if (limit != RLIM_INFINITY && offset > limit)
  			goto out_sig;
  		if (offset > inode->i_sb->s_maxbytes)
  			goto out_big;
  	} else {
  		/*
  		 * truncation of in-use swapfiles is disallowed - it would
  		 * cause subsequent swapout to scribble on the now-freed
  		 * blocks.
  		 */
  		if (IS_SWAPFILE(inode))
  			return -ETXTBSY;
  	}
  
  	return 0;
  out_sig:
  	send_sig(SIGXFSZ, current, 0);
  out_big:
  	return -EFBIG;
  }
  EXPORT_SYMBOL(inode_newsize_ok);
7bb46a673   npiggin@suse.de   fs: introduce new...
136
  /**
6a1a90ad1   Christoph Hellwig   rename generic_se...
137
   * setattr_copy - copy simple metadata updates into the generic inode
7bb46a673   npiggin@suse.de   fs: introduce new...
138
139
140
   * @inode:	the inode to be updated
   * @attr:	the new attributes
   *
6a1a90ad1   Christoph Hellwig   rename generic_se...
141
   * setattr_copy must be called with i_mutex held.
7bb46a673   npiggin@suse.de   fs: introduce new...
142
   *
6a1a90ad1   Christoph Hellwig   rename generic_se...
143
   * setattr_copy updates the inode's metadata with that specified
25985edce   Lucas De Marchi   Fix common misspe...
144
   * in attr. Noticeably missing is inode size update, which is more complex
2c27c65ed   Christoph Hellwig   check ATTR_SIZE c...
145
   * as it requires pagecache updates.
7bb46a673   npiggin@suse.de   fs: introduce new...
146
147
148
149
150
   *
   * The inode is not marked as dirty after this operation. The rationale is
   * that for "simple" filesystems, the struct inode is the inode storage.
   * The caller is free to mark the inode dirty afterwards if needed.
   */
6a1a90ad1   Christoph Hellwig   rename generic_se...
151
  void setattr_copy(struct inode *inode, const struct iattr *attr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
153
  {
  	unsigned int ia_valid = attr->ia_valid;
4a30131e7   NeilBrown   [PATCH] Fix some ...
154

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  	if (ia_valid & ATTR_UID)
  		inode->i_uid = attr->ia_uid;
  	if (ia_valid & ATTR_GID)
  		inode->i_gid = attr->ia_gid;
  	if (ia_valid & ATTR_ATIME)
  		inode->i_atime = timespec_trunc(attr->ia_atime,
  						inode->i_sb->s_time_gran);
  	if (ia_valid & ATTR_MTIME)
  		inode->i_mtime = timespec_trunc(attr->ia_mtime,
  						inode->i_sb->s_time_gran);
  	if (ia_valid & ATTR_CTIME)
  		inode->i_ctime = timespec_trunc(attr->ia_ctime,
  						inode->i_sb->s_time_gran);
  	if (ia_valid & ATTR_MODE) {
  		umode_t mode = attr->ia_mode;
7fa294c89   Eric W. Biederman   userns: Allow cho...
170
  		if (!in_group_p(inode->i_gid) &&
23adbe12e   Andy Lutomirski   fs,userns: Change...
171
  		    !capable_wrt_inode_uidgid(inode, CAP_FSETID))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
172
173
174
  			mode &= ~S_ISGID;
  		inode->i_mode = mode;
  	}
7bb46a673   npiggin@suse.de   fs: introduce new...
175
  }
6a1a90ad1   Christoph Hellwig   rename generic_se...
176
  EXPORT_SYMBOL(setattr_copy);
7bb46a673   npiggin@suse.de   fs: introduce new...
177

27ac0ffea   J. Bruce Fields   locks: break dele...
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  /**
   * notify_change - modify attributes of a filesytem object
   * @dentry:	object affected
   * @iattr:	new attributes
   * @delegated_inode: returns inode, if the inode is delegated
   *
   * The caller must hold the i_mutex on the affected object.
   *
   * If notify_change discovers a delegation in need of breaking,
   * it will return -EWOULDBLOCK and return a reference to the inode in
   * delegated_inode.  The caller should then break the delegation and
   * retry.  Because breaking a delegation may take a long time, the
   * caller should drop the i_mutex before doing so.
   *
   * Alternatively, a caller may pass NULL for delegated_inode.  This may
   * be appropriate for callers that expect the underlying filesystem not
   * to be NFS exported.  Also, passing NULL is fine for callers holding
   * the file open for write, as there can be no conflicting delegation in
   * that case.
   */
  int notify_change(struct dentry * dentry, struct iattr * attr, struct inode **delegated_inode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
199
200
  {
  	struct inode *inode = dentry->d_inode;
8d334acdd   Al Viro   switch is_sxid() ...
201
  	umode_t mode = inode->i_mode;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
203
204
  	int error;
  	struct timespec now;
  	unsigned int ia_valid = attr->ia_valid;
5955102c9   Al Viro   wrappers for ->i_...
205
  	WARN_ON_ONCE(!inode_is_locked(inode));
c4107b309   Andrew Morton   notify_change(): ...
206

beb29e058   Miklos Szeredi   [patch 4/4] vfs: ...
207
208
209
210
  	if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID | ATTR_TIMES_SET)) {
  		if (IS_IMMUTABLE(inode) || IS_APPEND(inode))
  			return -EPERM;
  	}
f2b20f6ee   Miklos Szeredi   vfs: move permiss...
211
212
213
214
215
216
217
218
219
220
221
222
223
224
  	/*
  	 * If utimes(2) and friends are called with times == NULL (or both
  	 * times are UTIME_NOW), then we need to check for write permission
  	 */
  	if (ia_valid & ATTR_TOUCH) {
  		if (IS_IMMUTABLE(inode))
  			return -EPERM;
  
  		if (!inode_owner_or_capable(inode)) {
  			error = inode_permission(inode, MAY_WRITE);
  			if (error)
  				return error;
  		}
  	}
69b457329   Andi Kleen   Cache xattr secur...
225
  	if ((ia_valid & ATTR_MODE)) {
8d334acdd   Al Viro   switch is_sxid() ...
226
  		umode_t amode = attr->ia_mode;
69b457329   Andi Kleen   Cache xattr secur...
227
228
229
230
  		/* Flag setting protected by i_mutex */
  		if (is_sxid(amode))
  			inode->i_flags &= ~S_NOSEC;
  	}
c2050a454   Deepa Dinamani   fs: Replace curre...
231
  	now = current_time(inode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
232
233
234
235
236
237
  
  	attr->ia_ctime = now;
  	if (!(ia_valid & ATTR_ATIME_SET))
  		attr->ia_atime = now;
  	if (!(ia_valid & ATTR_MTIME_SET))
  		attr->ia_mtime = now;
b53767719   Serge E. Hallyn   Implement file po...
238
  	if (ia_valid & ATTR_KILL_PRIV) {
b53767719   Serge E. Hallyn   Implement file po...
239
  		error = security_inode_need_killpriv(dentry);
030b533c4   Jan Kara   fs: Avoid prematu...
240
  		if (error < 0)
b53767719   Serge E. Hallyn   Implement file po...
241
  			return error;
030b533c4   Jan Kara   fs: Avoid prematu...
242
243
  		if (error == 0)
  			ia_valid = attr->ia_valid &= ~ATTR_KILL_PRIV;
b53767719   Serge E. Hallyn   Implement file po...
244
  	}
6de0ec00b   Jeff Layton   VFS: make notify_...
245
246
247
248
249
250
251
252
253
254
255
  
  	/*
  	 * We now pass ATTR_KILL_S*ID to the lower level setattr function so
  	 * that the function has the ability to reinterpret a mode change
  	 * that's due to these bits. This adds an implicit restriction that
  	 * no function will ever call notify_change with both ATTR_MODE and
  	 * ATTR_KILL_S*ID set.
  	 */
  	if ((ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID)) &&
  	    (ia_valid & ATTR_MODE))
  		BUG();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
  	if (ia_valid & ATTR_KILL_SUID) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
  		if (mode & S_ISUID) {
6de0ec00b   Jeff Layton   VFS: make notify_...
258
259
  			ia_valid = attr->ia_valid |= ATTR_MODE;
  			attr->ia_mode = (inode->i_mode & ~S_ISUID);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
261
262
  		}
  	}
  	if (ia_valid & ATTR_KILL_SGID) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263
264
265
266
267
268
269
270
  		if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
  			if (!(ia_valid & ATTR_MODE)) {
  				ia_valid = attr->ia_valid |= ATTR_MODE;
  				attr->ia_mode = inode->i_mode;
  			}
  			attr->ia_mode &= ~S_ISGID;
  		}
  	}
6de0ec00b   Jeff Layton   VFS: make notify_...
271
  	if (!(attr->ia_valid & ~(ATTR_KILL_SUID | ATTR_KILL_SGID)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
  		return 0;
a475acf01   Seth Forshee   fs: Refuse uid/gi...
273
274
275
276
277
278
279
280
281
282
  	/*
  	 * Verify that uid/gid changes are valid in the target
  	 * namespace of the superblock.
  	 */
  	if (ia_valid & ATTR_UID &&
  	    !kuid_has_mapping(inode->i_sb->s_user_ns, attr->ia_uid))
  		return -EOVERFLOW;
  	if (ia_valid & ATTR_GID &&
  	    !kgid_has_mapping(inode->i_sb->s_user_ns, attr->ia_gid))
  		return -EOVERFLOW;
0bd23d09b   Eric W. Biederman   vfs: Don't modify...
283
284
285
286
287
288
289
  	/* Don't allow modifications of files with invalid uids or
  	 * gids unless those uids & gids are being made valid.
  	 */
  	if (!(ia_valid & ATTR_UID) && !uid_valid(inode->i_uid))
  		return -EOVERFLOW;
  	if (!(ia_valid & ATTR_GID) && !gid_valid(inode->i_gid))
  		return -EOVERFLOW;
a77b72da2   Miklos Szeredi   [patch] vfs: make...
290
291
292
  	error = security_inode_setattr(dentry, attr);
  	if (error)
  		return error;
27ac0ffea   J. Bruce Fields   locks: break dele...
293
294
295
  	error = try_break_deleg(inode, delegated_inode);
  	if (error)
  		return error;
a77b72da2   Miklos Szeredi   [patch] vfs: make...
296

eef2380c1   Christoph Hellwig   default to simple...
297
  	if (inode->i_op->setattr)
a77b72da2   Miklos Szeredi   [patch] vfs: make...
298
  		error = inode->i_op->setattr(dentry, attr);
eef2380c1   Christoph Hellwig   default to simple...
299
300
  	else
  		error = simple_setattr(dentry, attr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301

975d29437   Mimi Zohar   evm: imbed evm_in...
302
  	if (!error) {
0eeca2830   Robert Love   [PATCH] inotify
303
  		fsnotify_change(dentry, ia_valid);
9957a5043   Mimi Zohar   ima: add inode_po...
304
  		ima_inode_post_setattr(dentry);
975d29437   Mimi Zohar   evm: imbed evm_in...
305
306
  		evm_inode_post_setattr(dentry, ia_valid);
  	}
0eeca2830   Robert Love   [PATCH] inotify
307

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
309
  	return error;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
  EXPORT_SYMBOL(notify_change);