• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *
3  * Copyright (C) 2011 Novell Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  */
9 
10 #include <linux/fs.h>
11 #include <linux/slab.h>
12 #include <linux/xattr.h>
13 #include <linux/posix_acl.h>
14 #include "overlayfs.h"
15 
ovl_copy_up_truncate(struct dentry * dentry)16 static int ovl_copy_up_truncate(struct dentry *dentry)
17 {
18 	int err;
19 	struct dentry *parent;
20 	struct kstat stat;
21 	struct path lowerpath;
22 	const struct cred *old_cred;
23 
24 	parent = dget_parent(dentry);
25 	err = ovl_copy_up(parent);
26 	if (err)
27 		goto out_dput_parent;
28 
29 	ovl_path_lower(dentry, &lowerpath);
30 
31 	old_cred = ovl_override_creds(dentry->d_sb);
32 	err = vfs_getattr(&lowerpath, &stat);
33 	if (!err) {
34 		stat.size = 0;
35 		err = ovl_copy_up_one(parent, dentry, &lowerpath, &stat);
36 	}
37 	revert_creds(old_cred);
38 
39 out_dput_parent:
40 	dput(parent);
41 	return err;
42 }
43 
ovl_setattr(struct dentry * dentry,struct iattr * attr)44 int ovl_setattr(struct dentry *dentry, struct iattr *attr)
45 {
46 	int err;
47 	struct dentry *upperdentry;
48 	const struct cred *old_cred;
49 
50 	/*
51 	 * Check for permissions before trying to copy-up.  This is redundant
52 	 * since it will be rechecked later by ->setattr() on upper dentry.  But
53 	 * without this, copy-up can be triggered by just about anybody.
54 	 *
55 	 * We don't initialize inode->size, which just means that
56 	 * inode_newsize_ok() will always check against MAX_LFS_FILESIZE and not
57 	 * check for a swapfile (which this won't be anyway).
58 	 */
59 	err = setattr_prepare(dentry, attr);
60 	if (err)
61 		return err;
62 
63 	err = ovl_want_write(dentry);
64 	if (err)
65 		goto out;
66 
67 	if (attr->ia_valid & ATTR_SIZE) {
68 		struct inode *realinode = d_inode(ovl_dentry_real(dentry));
69 
70 		err = -ETXTBSY;
71 		if (atomic_read(&realinode->i_writecount) < 0)
72 			goto out_drop_write;
73 	}
74 
75 	err = ovl_copy_up(dentry);
76 	if (!err) {
77 		struct inode *winode = NULL;
78 
79 		upperdentry = ovl_dentry_upper(dentry);
80 
81 		if (attr->ia_valid & ATTR_SIZE) {
82 			winode = d_inode(upperdentry);
83 			err = get_write_access(winode);
84 			if (err)
85 				goto out_drop_write;
86 		}
87 
88 		if (attr->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
89 			attr->ia_valid &= ~ATTR_MODE;
90 
91 		inode_lock(upperdentry->d_inode);
92 		old_cred = ovl_override_creds(dentry->d_sb);
93 		err = notify_change(upperdentry, attr, NULL);
94 		revert_creds(old_cred);
95 		if (!err)
96 			ovl_copyattr(upperdentry->d_inode, dentry->d_inode);
97 		inode_unlock(upperdentry->d_inode);
98 
99 		if (winode)
100 			put_write_access(winode);
101 	}
102 out_drop_write:
103 	ovl_drop_write(dentry);
104 out:
105 	return err;
106 }
107 
ovl_getattr(struct vfsmount * mnt,struct dentry * dentry,struct kstat * stat)108 static int ovl_getattr(struct vfsmount *mnt, struct dentry *dentry,
109 			 struct kstat *stat)
110 {
111 	struct path realpath;
112 	const struct cred *old_cred;
113 	int err;
114 
115 	ovl_path_real(dentry, &realpath);
116 	old_cred = ovl_override_creds(dentry->d_sb);
117 	err = vfs_getattr(&realpath, stat);
118 	revert_creds(old_cred);
119 	return err;
120 }
121 
ovl_permission(struct inode * inode,int mask)122 int ovl_permission(struct inode *inode, int mask)
123 {
124 	bool is_upper;
125 	struct inode *realinode = ovl_inode_real(inode, &is_upper);
126 	const struct cred *old_cred;
127 	int err;
128 
129 	/* Careful in RCU walk mode */
130 	if (!realinode) {
131 		WARN_ON(!(mask & MAY_NOT_BLOCK));
132 		return -ECHILD;
133 	}
134 
135 	/*
136 	 * Check overlay inode with the creds of task and underlying inode
137 	 * with creds of mounter
138 	 */
139 	err = generic_permission(inode, mask);
140 	if (err)
141 		return err;
142 
143 	old_cred = ovl_override_creds(inode->i_sb);
144 	if (!is_upper && !special_file(realinode->i_mode) && mask & MAY_WRITE) {
145 		mask &= ~(MAY_WRITE | MAY_APPEND);
146 		/* Make sure mounter can read file for copy up later */
147 		mask |= MAY_READ;
148 	}
149 	err = inode_permission(realinode, mask);
150 	revert_creds(old_cred);
151 
152 	return err;
153 }
154 
ovl_get_link(struct dentry * dentry,struct inode * inode,struct delayed_call * done)155 static const char *ovl_get_link(struct dentry *dentry,
156 				struct inode *inode,
157 				struct delayed_call *done)
158 {
159 	const struct cred *old_cred;
160 	const char *p;
161 
162 	if (!dentry)
163 		return ERR_PTR(-ECHILD);
164 
165 	old_cred = ovl_override_creds(dentry->d_sb);
166 	p = vfs_get_link(ovl_dentry_real(dentry), done);
167 	revert_creds(old_cred);
168 	return p;
169 }
170 
ovl_is_private_xattr(const char * name)171 bool ovl_is_private_xattr(const char *name)
172 {
173 	return strncmp(name, OVL_XATTR_PREFIX,
174 		       sizeof(OVL_XATTR_PREFIX) - 1) == 0;
175 }
176 
ovl_xattr_set(struct dentry * dentry,const char * name,const void * value,size_t size,int flags)177 int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
178 		  size_t size, int flags)
179 {
180 	int err;
181 	struct path realpath;
182 	enum ovl_path_type type = ovl_path_real(dentry, &realpath);
183 	const struct cred *old_cred;
184 
185 	err = ovl_want_write(dentry);
186 	if (err)
187 		goto out;
188 
189 	if (!value && !OVL_TYPE_UPPER(type)) {
190 		err = vfs_getxattr(realpath.dentry, name, NULL, 0);
191 		if (err < 0)
192 			goto out_drop_write;
193 	}
194 
195 	err = ovl_copy_up(dentry);
196 	if (err)
197 		goto out_drop_write;
198 
199 	if (!OVL_TYPE_UPPER(type))
200 		ovl_path_upper(dentry, &realpath);
201 
202 	old_cred = ovl_override_creds(dentry->d_sb);
203 	if (value)
204 		err = vfs_setxattr(realpath.dentry, name, value, size, flags);
205 	else {
206 		WARN_ON(flags != XATTR_REPLACE);
207 		err = vfs_removexattr(realpath.dentry, name);
208 	}
209 	revert_creds(old_cred);
210 
211 out_drop_write:
212 	ovl_drop_write(dentry);
213 out:
214 	return err;
215 }
216 
ovl_xattr_get(struct dentry * dentry,const char * name,void * value,size_t size)217 int ovl_xattr_get(struct dentry *dentry, const char *name,
218 		  void *value, size_t size)
219 {
220 	struct dentry *realdentry = ovl_dentry_real(dentry);
221 	ssize_t res;
222 	const struct cred *old_cred;
223 
224 	old_cred = ovl_override_creds(dentry->d_sb);
225 	res = vfs_getxattr(realdentry, name, value, size);
226 	revert_creds(old_cred);
227 	return res;
228 }
229 
ovl_can_list(const char * s)230 static bool ovl_can_list(const char *s)
231 {
232 	/* List all non-trusted xatts */
233 	if (strncmp(s, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) != 0)
234 		return true;
235 
236 	/* Never list trusted.overlay, list other trusted for superuser only */
237 	return !ovl_is_private_xattr(s) && capable(CAP_SYS_ADMIN);
238 }
239 
ovl_listxattr(struct dentry * dentry,char * list,size_t size)240 ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size)
241 {
242 	struct dentry *realdentry = ovl_dentry_real(dentry);
243 	ssize_t res;
244 	size_t len;
245 	char *s;
246 	const struct cred *old_cred;
247 
248 	old_cred = ovl_override_creds(dentry->d_sb);
249 	res = vfs_listxattr(realdentry, list, size);
250 	revert_creds(old_cred);
251 	if (res <= 0 || size == 0)
252 		return res;
253 
254 	/* filter out private xattrs */
255 	for (s = list, len = res; len;) {
256 		size_t slen = strnlen(s, len) + 1;
257 
258 		/* underlying fs providing us with an broken xattr list? */
259 		if (WARN_ON(slen > len))
260 			return -EIO;
261 
262 		len -= slen;
263 		if (!ovl_can_list(s)) {
264 			res -= slen;
265 			memmove(s, s + slen, len);
266 		} else {
267 			s += slen;
268 		}
269 	}
270 
271 	return res;
272 }
273 
ovl_get_acl(struct inode * inode,int type)274 struct posix_acl *ovl_get_acl(struct inode *inode, int type)
275 {
276 	struct inode *realinode = ovl_inode_real(inode, NULL);
277 	const struct cred *old_cred;
278 	struct posix_acl *acl;
279 
280 	if (!IS_ENABLED(CONFIG_FS_POSIX_ACL) || !IS_POSIXACL(realinode))
281 		return NULL;
282 
283 	old_cred = ovl_override_creds(inode->i_sb);
284 	acl = get_acl(realinode, type);
285 	revert_creds(old_cred);
286 
287 	return acl;
288 }
289 
ovl_open_need_copy_up(int flags,enum ovl_path_type type,struct dentry * realdentry)290 static bool ovl_open_need_copy_up(int flags, enum ovl_path_type type,
291 				  struct dentry *realdentry)
292 {
293 	if (OVL_TYPE_UPPER(type))
294 		return false;
295 
296 	if (special_file(realdentry->d_inode->i_mode))
297 		return false;
298 
299 	if (!(OPEN_FMODE(flags) & FMODE_WRITE) && !(flags & O_TRUNC))
300 		return false;
301 
302 	return true;
303 }
304 
ovl_open_maybe_copy_up(struct dentry * dentry,unsigned int file_flags)305 int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags)
306 {
307 	int err = 0;
308 	struct path realpath;
309 	enum ovl_path_type type;
310 
311 	type = ovl_path_real(dentry, &realpath);
312 	if (ovl_open_need_copy_up(file_flags, type, realpath.dentry)) {
313 		err = ovl_want_write(dentry);
314 		if (!err) {
315 			if (file_flags & O_TRUNC)
316 				err = ovl_copy_up_truncate(dentry);
317 			else
318 				err = ovl_copy_up(dentry);
319 			ovl_drop_write(dentry);
320 		}
321 	}
322 
323 	return err;
324 }
325 
ovl_update_time(struct inode * inode,struct timespec * ts,int flags)326 int ovl_update_time(struct inode *inode, struct timespec *ts, int flags)
327 {
328 	struct dentry *alias;
329 	struct path upperpath;
330 
331 	if (!(flags & S_ATIME))
332 		return 0;
333 
334 	alias = d_find_any_alias(inode);
335 	if (!alias)
336 		return 0;
337 
338 	ovl_path_upper(alias, &upperpath);
339 	if (upperpath.dentry) {
340 		touch_atime(&upperpath);
341 		inode->i_atime = d_inode(upperpath.dentry)->i_atime;
342 	}
343 
344 	dput(alias);
345 
346 	return 0;
347 }
348 
349 static const struct inode_operations ovl_file_inode_operations = {
350 	.setattr	= ovl_setattr,
351 	.permission	= ovl_permission,
352 	.getattr	= ovl_getattr,
353 	.listxattr	= ovl_listxattr,
354 	.get_acl	= ovl_get_acl,
355 	.update_time	= ovl_update_time,
356 };
357 
358 static const struct inode_operations ovl_symlink_inode_operations = {
359 	.setattr	= ovl_setattr,
360 	.get_link	= ovl_get_link,
361 	.readlink	= generic_readlink,
362 	.getattr	= ovl_getattr,
363 	.listxattr	= ovl_listxattr,
364 	.update_time	= ovl_update_time,
365 };
366 
ovl_fill_inode(struct inode * inode,umode_t mode)367 static void ovl_fill_inode(struct inode *inode, umode_t mode)
368 {
369 	inode->i_ino = get_next_ino();
370 	inode->i_mode = mode;
371 	inode->i_flags |= S_NOCMTIME;
372 #ifdef CONFIG_FS_POSIX_ACL
373 	inode->i_acl = inode->i_default_acl = ACL_DONT_CACHE;
374 #endif
375 
376 	mode &= S_IFMT;
377 	switch (mode) {
378 	case S_IFDIR:
379 		inode->i_op = &ovl_dir_inode_operations;
380 		inode->i_fop = &ovl_dir_operations;
381 		break;
382 
383 	case S_IFLNK:
384 		inode->i_op = &ovl_symlink_inode_operations;
385 		break;
386 
387 	default:
388 		WARN(1, "illegal file type: %i\n", mode);
389 		/* Fall through */
390 
391 	case S_IFREG:
392 	case S_IFSOCK:
393 	case S_IFBLK:
394 	case S_IFCHR:
395 	case S_IFIFO:
396 		inode->i_op = &ovl_file_inode_operations;
397 		break;
398 	}
399 }
400 
ovl_new_inode(struct super_block * sb,umode_t mode)401 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode)
402 {
403 	struct inode *inode;
404 
405 	inode = new_inode(sb);
406 	if (inode)
407 		ovl_fill_inode(inode, mode);
408 
409 	return inode;
410 }
411 
ovl_inode_test(struct inode * inode,void * data)412 static int ovl_inode_test(struct inode *inode, void *data)
413 {
414 	return ovl_inode_real(inode, NULL) == data;
415 }
416 
ovl_inode_set(struct inode * inode,void * data)417 static int ovl_inode_set(struct inode *inode, void *data)
418 {
419 	inode->i_private = (void *) (((unsigned long) data) | OVL_ISUPPER_MASK);
420 	return 0;
421 }
422 
ovl_get_inode(struct super_block * sb,struct inode * realinode)423 struct inode *ovl_get_inode(struct super_block *sb, struct inode *realinode)
424 
425 {
426 	struct inode *inode;
427 
428 	inode = iget5_locked(sb, (unsigned long) realinode,
429 			     ovl_inode_test, ovl_inode_set, realinode);
430 	if (inode && inode->i_state & I_NEW) {
431 		ovl_fill_inode(inode, realinode->i_mode);
432 		set_nlink(inode, realinode->i_nlink);
433 		unlock_new_inode(inode);
434 	}
435 
436 	return inode;
437 }
438