796d06fafd0919c380c54a9c1d6f80f07e5c1b8a
[cascardo/linux.git] / fs / overlayfs / copy_up.c
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/module.h>
11 #include <linux/fs.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"
23
24 #define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
25
26 static bool __read_mostly ovl_check_copy_up;
27 module_param_named(check_copy_up, ovl_check_copy_up, bool,
28                    S_IWUSR | S_IRUGO);
29 MODULE_PARM_DESC(ovl_check_copy_up,
30                  "Warn on copy-up when causing process also has a R/O fd open");
31
32 static int ovl_check_fd(const void *data, struct file *f, unsigned int fd)
33 {
34         const struct dentry *dentry = data;
35
36         if (f->f_inode == 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);
39         return 0;
40 }
41
42 /*
43  * Check the fds open by this process and warn if something like the following
44  * scenario is about to occur:
45  *
46  *      fd1 = open("foo", O_RDONLY);
47  *      fd2 = open("foo", O_RDWR);
48  */
49 static void ovl_do_check_copy_up(struct dentry *dentry)
50 {
51         if (ovl_check_copy_up)
52                 iterate_fd(current->files, 0, ovl_check_fd, dentry);
53 }
54
55 int ovl_copy_xattr(struct dentry *old, struct dentry *new)
56 {
57         ssize_t list_size, size, value_size = 0;
58         char *buf, *name, *value = NULL;
59         int uninitialized_var(error);
60         size_t slen;
61
62         if (!old->d_inode->i_op->getxattr ||
63             !new->d_inode->i_op->getxattr)
64                 return 0;
65
66         list_size = vfs_listxattr(old, NULL, 0);
67         if (list_size <= 0) {
68                 if (list_size == -EOPNOTSUPP)
69                         return 0;
70                 return list_size;
71         }
72
73         buf = kzalloc(list_size, GFP_KERNEL);
74         if (!buf)
75                 return -ENOMEM;
76
77         list_size = vfs_listxattr(old, buf, list_size);
78         if (list_size <= 0) {
79                 error = list_size;
80                 goto out;
81         }
82
83         for (name = buf; list_size; name += slen) {
84                 slen = strnlen(name, list_size) + 1;
85
86                 /* underlying fs providing us with an broken xattr list? */
87                 if (WARN_ON(slen > list_size)) {
88                         error = -EIO;
89                         break;
90                 }
91                 list_size -= slen;
92
93                 if (ovl_is_private_xattr(name))
94                         continue;
95 retry:
96                 size = vfs_getxattr(old, name, value, value_size);
97                 if (size == -ERANGE)
98                         size = vfs_getxattr(old, name, NULL, 0);
99
100                 if (size < 0) {
101                         error = size;
102                         break;
103                 }
104
105                 if (size > value_size) {
106                         void *new;
107
108                         new = krealloc(value, size, GFP_KERNEL);
109                         if (!new) {
110                                 error = -ENOMEM;
111                                 break;
112                         }
113                         value = new;
114                         value_size = size;
115                         goto retry;
116                 }
117
118                 error = vfs_setxattr(new, name, value, size, 0);
119                 if (error)
120                         break;
121         }
122         kfree(value);
123 out:
124         kfree(buf);
125         return error;
126 }
127
128 static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
129 {
130         struct file *old_file;
131         struct file *new_file;
132         loff_t old_pos = 0;
133         loff_t new_pos = 0;
134         int error = 0;
135
136         if (len == 0)
137                 return 0;
138
139         old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
140         if (IS_ERR(old_file))
141                 return PTR_ERR(old_file);
142
143         new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
144         if (IS_ERR(new_file)) {
145                 error = PTR_ERR(new_file);
146                 goto out_fput;
147         }
148
149         /* FIXME: copy up sparse files efficiently */
150         while (len) {
151                 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
152                 long bytes;
153
154                 if (len < this_len)
155                         this_len = len;
156
157                 if (signal_pending_state(TASK_KILLABLE, current)) {
158                         error = -EINTR;
159                         break;
160                 }
161
162                 bytes = do_splice_direct(old_file, &old_pos,
163                                          new_file, &new_pos,
164                                          this_len, SPLICE_F_MOVE);
165                 if (bytes <= 0) {
166                         error = bytes;
167                         break;
168                 }
169                 WARN_ON(old_pos != new_pos);
170
171                 len -= bytes;
172         }
173
174         fput(new_file);
175 out_fput:
176         fput(old_file);
177         return error;
178 }
179
180 static char *ovl_read_symlink(struct dentry *realdentry)
181 {
182         int res;
183         char *buf;
184         struct inode *inode = realdentry->d_inode;
185         mm_segment_t old_fs;
186
187         res = -EINVAL;
188         if (!inode->i_op->readlink)
189                 goto err;
190
191         res = -ENOMEM;
192         buf = (char *) __get_free_page(GFP_KERNEL);
193         if (!buf)
194                 goto err;
195
196         old_fs = get_fs();
197         set_fs(get_ds());
198         /* The cast to a user pointer is valid due to the set_fs() */
199         res = inode->i_op->readlink(realdentry,
200                                     (char __user *)buf, PAGE_SIZE - 1);
201         set_fs(old_fs);
202         if (res < 0) {
203                 free_page((unsigned long) buf);
204                 goto err;
205         }
206         buf[res] = '\0';
207
208         return buf;
209
210 err:
211         return ERR_PTR(res);
212 }
213
214 static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
215 {
216         struct iattr attr = {
217                 .ia_valid =
218                      ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
219                 .ia_atime = stat->atime,
220                 .ia_mtime = stat->mtime,
221         };
222
223         return notify_change(upperdentry, &attr, NULL);
224 }
225
226 int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
227 {
228         int err = 0;
229
230         if (!S_ISLNK(stat->mode)) {
231                 struct iattr attr = {
232                         .ia_valid = ATTR_MODE,
233                         .ia_mode = stat->mode,
234                 };
235                 err = notify_change(upperdentry, &attr, NULL);
236         }
237         if (!err) {
238                 struct iattr attr = {
239                         .ia_valid = ATTR_UID | ATTR_GID,
240                         .ia_uid = stat->uid,
241                         .ia_gid = stat->gid,
242                 };
243                 err = notify_change(upperdentry, &attr, NULL);
244         }
245         if (!err)
246                 ovl_set_timestamps(upperdentry, stat);
247
248         return err;
249 }
250
251 static int ovl_copy_up_locked(struct dentry *workdir, struct dentry *upperdir,
252                               struct dentry *dentry, struct path *lowerpath,
253                               struct kstat *stat, const char *link)
254 {
255         struct inode *wdir = workdir->d_inode;
256         struct inode *udir = upperdir->d_inode;
257         struct dentry *newdentry = NULL;
258         struct dentry *upper = NULL;
259         umode_t mode = stat->mode;
260         int err;
261
262         newdentry = ovl_lookup_temp(workdir, dentry);
263         err = PTR_ERR(newdentry);
264         if (IS_ERR(newdentry))
265                 goto out;
266
267         upper = lookup_one_len(dentry->d_name.name, upperdir,
268                                dentry->d_name.len);
269         err = PTR_ERR(upper);
270         if (IS_ERR(upper))
271                 goto out1;
272
273         /* Can't properly set mode on creation because of the umask */
274         stat->mode &= S_IFMT;
275         err = ovl_create_real(wdir, newdentry, stat, link, NULL, true);
276         stat->mode = mode;
277         if (err)
278                 goto out2;
279
280         if (S_ISREG(stat->mode)) {
281                 struct path upperpath;
282
283                 ovl_path_upper(dentry, &upperpath);
284                 BUG_ON(upperpath.dentry != NULL);
285                 upperpath.dentry = newdentry;
286
287                 err = ovl_copy_up_data(lowerpath, &upperpath, stat->size);
288                 if (err)
289                         goto out_cleanup;
290         }
291
292         err = ovl_copy_xattr(lowerpath->dentry, newdentry);
293         if (err)
294                 goto out_cleanup;
295
296         inode_lock(newdentry->d_inode);
297         err = ovl_set_attr(newdentry, stat);
298         inode_unlock(newdentry->d_inode);
299         if (err)
300                 goto out_cleanup;
301
302         err = ovl_do_rename(wdir, newdentry, udir, upper, 0);
303         if (err)
304                 goto out_cleanup;
305
306         ovl_dentry_update(dentry, newdentry);
307         ovl_inode_update(d_inode(dentry), d_inode(newdentry));
308         newdentry = NULL;
309
310         /*
311          * Non-directores become opaque when copied up.
312          */
313         if (!S_ISDIR(stat->mode))
314                 ovl_dentry_set_opaque(dentry, true);
315 out2:
316         dput(upper);
317 out1:
318         dput(newdentry);
319 out:
320         return err;
321
322 out_cleanup:
323         ovl_cleanup(wdir, newdentry);
324         goto out2;
325 }
326
327 /*
328  * Copy up a single dentry
329  *
330  * Directory renames only allowed on "pure upper" (already created on
331  * upper filesystem, never copied up).  Directories which are on lower or
332  * are merged may not be renamed.  For these -EXDEV is returned and
333  * userspace has to deal with it.  This means, when copying up a
334  * directory we can rely on it and ancestors being stable.
335  *
336  * Non-directory renames start with copy up of source if necessary.  The
337  * actual rename will only proceed once the copy up was successful.  Copy
338  * up uses upper parent i_mutex for exclusion.  Since rename can change
339  * d_parent it is possible that the copy up will lock the old parent.  At
340  * that point the file will have already been copied up anyway.
341  */
342 int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
343                     struct path *lowerpath, struct kstat *stat)
344 {
345         struct dentry *workdir = ovl_workdir(dentry);
346         int err;
347         struct kstat pstat;
348         struct path parentpath;
349         struct dentry *upperdir;
350         struct dentry *upperdentry;
351         char *link = NULL;
352
353         if (WARN_ON(!workdir))
354                 return -EROFS;
355
356         ovl_do_check_copy_up(lowerpath->dentry);
357
358         ovl_path_upper(parent, &parentpath);
359         upperdir = parentpath.dentry;
360
361         err = vfs_getattr(&parentpath, &pstat);
362         if (err)
363                 return err;
364
365         if (S_ISLNK(stat->mode)) {
366                 link = ovl_read_symlink(lowerpath->dentry);
367                 if (IS_ERR(link))
368                         return PTR_ERR(link);
369         }
370
371         err = -EIO;
372         if (lock_rename(workdir, upperdir) != NULL) {
373                 pr_err("overlayfs: failed to lock workdir+upperdir\n");
374                 goto out_unlock;
375         }
376         upperdentry = ovl_dentry_upper(dentry);
377         if (upperdentry) {
378                 /* Raced with another copy-up?  Nothing to do, then... */
379                 err = 0;
380                 goto out_unlock;
381         }
382
383         err = ovl_copy_up_locked(workdir, upperdir, dentry, lowerpath,
384                                  stat, link);
385         if (!err) {
386                 /* Restore timestamps on parent (best effort) */
387                 ovl_set_timestamps(upperdir, &pstat);
388         }
389 out_unlock:
390         unlock_rename(workdir, upperdir);
391
392         if (link)
393                 free_page((unsigned long) link);
394
395         return err;
396 }
397
398 int ovl_copy_up(struct dentry *dentry)
399 {
400         int err = 0;
401         const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
402
403         while (!err) {
404                 struct dentry *next;
405                 struct dentry *parent;
406                 struct path lowerpath;
407                 struct kstat stat;
408                 enum ovl_path_type type = ovl_path_type(dentry);
409
410                 if (OVL_TYPE_UPPER(type))
411                         break;
412
413                 next = dget(dentry);
414                 /* find the topmost dentry not yet copied up */
415                 for (;;) {
416                         parent = dget_parent(next);
417
418                         type = ovl_path_type(parent);
419                         if (OVL_TYPE_UPPER(type))
420                                 break;
421
422                         dput(next);
423                         next = parent;
424                 }
425
426                 ovl_path_lower(next, &lowerpath);
427                 err = vfs_getattr(&lowerpath, &stat);
428                 if (!err)
429                         err = ovl_copy_up_one(parent, next, &lowerpath, &stat);
430
431                 dput(parent);
432                 dput(next);
433         }
434         revert_creds(old_cred);
435
436         return err;
437 }