3 * Copyright (C) 2011 Novell Inc.
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.
10 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/file.h>
14 #include <linux/splice.h>
15 #include <linux/xattr.h>
16 #include <linux/security.h>
17 #include <linux/uaccess.h>
18 #include <linux/sched.h>
19 #include <linux/namei.h>
20 #include <linux/fdtable.h>
21 #include <linux/ratelimit.h>
22 #include "overlayfs.h"
24 #define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
26 static bool __read_mostly ovl_check_copy_up;
27 module_param_named(check_copy_up, ovl_check_copy_up, bool,
29 MODULE_PARM_DESC(ovl_check_copy_up,
30 "Warn on copy-up when causing process also has a R/O fd open");
32 static int ovl_check_fd(const void *data, struct file *f, unsigned int fd)
34 const struct dentry *dentry = data;
36 if (file_inode(f) == d_inode(dentry))
37 pr_warn_ratelimited("overlayfs: Warning: Copying up %pD, but open R/O on fd %u which will cease to be coherent [pid=%d %s]\n",
38 f, fd, current->pid, current->comm);
43 * Check the fds open by this process and warn if something like the following
44 * scenario is about to occur:
46 * fd1 = open("foo", O_RDONLY);
47 * fd2 = open("foo", O_RDWR);
49 static void ovl_do_check_copy_up(struct dentry *dentry)
51 if (ovl_check_copy_up)
52 iterate_fd(current->files, 0, ovl_check_fd, dentry);
55 int ovl_copy_xattr(struct dentry *old, struct dentry *new)
57 ssize_t list_size, size, value_size = 0;
58 char *buf, *name, *value = NULL;
59 int uninitialized_var(error);
62 if (!(old->d_inode->i_opflags & IOP_XATTR) ||
63 !(new->d_inode->i_opflags & IOP_XATTR))
66 list_size = vfs_listxattr(old, NULL, 0);
68 if (list_size == -EOPNOTSUPP)
73 buf = kzalloc(list_size, GFP_KERNEL);
77 list_size = vfs_listxattr(old, buf, list_size);
83 for (name = buf; list_size; name += slen) {
84 slen = strnlen(name, list_size) + 1;
86 /* underlying fs providing us with an broken xattr list? */
87 if (WARN_ON(slen > list_size)) {
93 if (ovl_is_private_xattr(name))
96 size = vfs_getxattr(old, name, value, value_size);
98 size = vfs_getxattr(old, name, NULL, 0);
105 if (size > value_size) {
108 new = krealloc(value, size, GFP_KERNEL);
118 error = security_inode_copy_up_xattr(name);
119 if (error < 0 && error != -EOPNOTSUPP)
123 continue; /* Discard */
125 error = vfs_setxattr(new, name, value, size, 0);
135 static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
137 struct file *old_file;
138 struct file *new_file;
146 old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
147 if (IS_ERR(old_file))
148 return PTR_ERR(old_file);
150 new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
151 if (IS_ERR(new_file)) {
152 error = PTR_ERR(new_file);
156 /* Try to use clone_file_range to clone up within the same fs */
157 error = vfs_clone_file_range(old_file, 0, new_file, 0, len);
160 /* Couldn't clone, so now we try to copy the data */
163 /* FIXME: copy up sparse files efficiently */
165 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
171 if (signal_pending_state(TASK_KILLABLE, current)) {
176 bytes = do_splice_direct(old_file, &old_pos,
178 this_len, SPLICE_F_MOVE);
183 WARN_ON(old_pos != new_pos);
189 error = vfs_fsync(new_file, 0);
196 static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
198 struct iattr attr = {
200 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
201 .ia_atime = stat->atime,
202 .ia_mtime = stat->mtime,
205 return notify_change(upperdentry, &attr, NULL);
208 int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
212 if (!S_ISLNK(stat->mode)) {
213 struct iattr attr = {
214 .ia_valid = ATTR_MODE,
215 .ia_mode = stat->mode,
217 err = notify_change(upperdentry, &attr, NULL);
220 struct iattr attr = {
221 .ia_valid = ATTR_UID | ATTR_GID,
225 err = notify_change(upperdentry, &attr, NULL);
228 ovl_set_timestamps(upperdentry, stat);
233 static int ovl_copy_up_locked(struct dentry *workdir, struct dentry *upperdir,
234 struct dentry *dentry, struct path *lowerpath,
235 struct kstat *stat, const char *link)
237 struct inode *wdir = workdir->d_inode;
238 struct inode *udir = upperdir->d_inode;
239 struct dentry *newdentry = NULL;
240 struct dentry *upper = NULL;
242 const struct cred *old_creds = NULL;
243 struct cred *new_creds = NULL;
244 struct cattr cattr = {
245 /* Can't properly set mode on creation because of the umask */
246 .mode = stat->mode & S_IFMT,
251 newdentry = ovl_lookup_temp(workdir, dentry);
252 err = PTR_ERR(newdentry);
253 if (IS_ERR(newdentry))
256 upper = lookup_one_len(dentry->d_name.name, upperdir,
258 err = PTR_ERR(upper);
262 err = security_inode_copy_up(dentry, &new_creds);
267 old_creds = override_creds(new_creds);
269 err = ovl_create_real(wdir, newdentry, &cattr, NULL, true);
272 revert_creds(old_creds);
279 if (S_ISREG(stat->mode)) {
280 struct path upperpath;
282 ovl_path_upper(dentry, &upperpath);
283 BUG_ON(upperpath.dentry != NULL);
284 upperpath.dentry = newdentry;
286 err = ovl_copy_up_data(lowerpath, &upperpath, stat->size);
291 err = ovl_copy_xattr(lowerpath->dentry, newdentry);
295 inode_lock(newdentry->d_inode);
296 err = ovl_set_attr(newdentry, stat);
297 inode_unlock(newdentry->d_inode);
301 err = ovl_do_rename(wdir, newdentry, udir, upper, 0);
305 ovl_dentry_update(dentry, newdentry);
306 ovl_inode_update(d_inode(dentry), d_inode(newdentry));
316 ovl_cleanup(wdir, newdentry);
321 * Copy up a single dentry
323 * All renames start with copy up of source if necessary. The actual
324 * rename will only proceed once the copy up was successful. Copy up uses
325 * upper parent i_mutex for exclusion. Since rename can change d_parent it
326 * is possible that the copy up will lock the old parent. At that point
327 * the file will have already been copied up anyway.
329 static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
330 struct path *lowerpath, struct kstat *stat)
332 DEFINE_DELAYED_CALL(done);
333 struct dentry *workdir = ovl_workdir(dentry);
336 struct path parentpath;
337 struct dentry *lowerdentry = lowerpath->dentry;
338 struct dentry *upperdir;
339 const char *link = NULL;
341 if (WARN_ON(!workdir))
344 ovl_do_check_copy_up(lowerdentry);
346 ovl_path_upper(parent, &parentpath);
347 upperdir = parentpath.dentry;
349 err = vfs_getattr(&parentpath, &pstat);
353 if (S_ISLNK(stat->mode)) {
354 link = vfs_get_link(lowerdentry, &done);
356 return PTR_ERR(link);
360 if (lock_rename(workdir, upperdir) != NULL) {
361 pr_err("overlayfs: failed to lock workdir+upperdir\n");
364 if (ovl_dentry_upper(dentry)) {
365 /* Raced with another copy-up? Nothing to do, then... */
370 err = ovl_copy_up_locked(workdir, upperdir, dentry, lowerpath,
373 /* Restore timestamps on parent (best effort) */
374 ovl_set_timestamps(upperdir, &pstat);
377 unlock_rename(workdir, upperdir);
378 do_delayed_call(&done);
383 int ovl_copy_up_flags(struct dentry *dentry, int flags)
386 const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
390 struct dentry *parent;
391 struct path lowerpath;
393 enum ovl_path_type type = ovl_path_type(dentry);
395 if (OVL_TYPE_UPPER(type))
399 /* find the topmost dentry not yet copied up */
401 parent = dget_parent(next);
403 type = ovl_path_type(parent);
404 if (OVL_TYPE_UPPER(type))
411 ovl_path_lower(next, &lowerpath);
412 err = vfs_getattr(&lowerpath, &stat);
413 /* maybe truncate regular file. this has no effect on dirs */
417 err = ovl_copy_up_one(parent, next, &lowerpath, &stat);
422 revert_creds(old_cred);
427 int ovl_copy_up(struct dentry *dentry)
429 return ovl_copy_up_flags(dentry, 0);