blob: a8273dec0fb83ebda42aa4c95e1bbbb9cd09346d [file] [log] [blame]
Miklos Szeredie9be9d52014-10-24 00:14:38 +02001/*
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
David Howellsfb5bb2c32015-07-07 15:04:44 +010010#include <linux/module.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020011#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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010018#include <linux/sched/signal.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010019#include <linux/cred.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020020#include <linux/namei.h>
David Howellsfb5bb2c32015-07-07 15:04:44 +010021#include <linux/fdtable.h>
22#include <linux/ratelimit.h>
Amir Goldstein3a1e8192017-03-30 15:22:16 +030023#include <linux/exportfs.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020024#include "overlayfs.h"
25
26#define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
27
David Howellsfb5bb2c32015-07-07 15:04:44 +010028static bool __read_mostly ovl_check_copy_up;
29module_param_named(check_copy_up, ovl_check_copy_up, bool,
30 S_IWUSR | S_IRUGO);
31MODULE_PARM_DESC(ovl_check_copy_up,
32 "Warn on copy-up when causing process also has a R/O fd open");
33
34static int ovl_check_fd(const void *data, struct file *f, unsigned int fd)
35{
36 const struct dentry *dentry = data;
37
Al Viro45063092016-12-04 18:24:56 -050038 if (file_inode(f) == d_inode(dentry))
David Howellsfb5bb2c32015-07-07 15:04:44 +010039 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",
40 f, fd, current->pid, current->comm);
41 return 0;
42}
43
44/*
45 * Check the fds open by this process and warn if something like the following
46 * scenario is about to occur:
47 *
48 * fd1 = open("foo", O_RDONLY);
49 * fd2 = open("foo", O_RDWR);
50 */
51static void ovl_do_check_copy_up(struct dentry *dentry)
52{
53 if (ovl_check_copy_up)
54 iterate_fd(current->files, 0, ovl_check_fd, dentry);
55}
56
Miklos Szeredie9be9d52014-10-24 00:14:38 +020057int ovl_copy_xattr(struct dentry *old, struct dentry *new)
58{
Vito Caputoe4ad29f2015-10-24 07:19:46 -050059 ssize_t list_size, size, value_size = 0;
60 char *buf, *name, *value = NULL;
61 int uninitialized_var(error);
Miklos Szeredi8b326c62016-09-16 14:12:11 +020062 size_t slen;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020063
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020064 if (!(old->d_inode->i_opflags & IOP_XATTR) ||
65 !(new->d_inode->i_opflags & IOP_XATTR))
Miklos Szeredie9be9d52014-10-24 00:14:38 +020066 return 0;
67
68 list_size = vfs_listxattr(old, NULL, 0);
69 if (list_size <= 0) {
70 if (list_size == -EOPNOTSUPP)
71 return 0;
72 return list_size;
73 }
74
75 buf = kzalloc(list_size, GFP_KERNEL);
76 if (!buf)
77 return -ENOMEM;
78
Miklos Szeredie9be9d52014-10-24 00:14:38 +020079 list_size = vfs_listxattr(old, buf, list_size);
80 if (list_size <= 0) {
81 error = list_size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050082 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020083 }
84
Miklos Szeredi8b326c62016-09-16 14:12:11 +020085 for (name = buf; list_size; name += slen) {
86 slen = strnlen(name, list_size) + 1;
87
88 /* underlying fs providing us with an broken xattr list? */
89 if (WARN_ON(slen > list_size)) {
90 error = -EIO;
91 break;
92 }
93 list_size -= slen;
94
Miklos Szeredi09562542016-08-08 15:08:49 +020095 if (ovl_is_private_xattr(name))
96 continue;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050097retry:
98 size = vfs_getxattr(old, name, value, value_size);
99 if (size == -ERANGE)
100 size = vfs_getxattr(old, name, NULL, 0);
101
Miklos Szeredi97daf8b2015-11-10 17:08:41 +0100102 if (size < 0) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200103 error = size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -0500104 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200105 }
Vito Caputoe4ad29f2015-10-24 07:19:46 -0500106
107 if (size > value_size) {
108 void *new;
109
110 new = krealloc(value, size, GFP_KERNEL);
111 if (!new) {
112 error = -ENOMEM;
113 break;
114 }
115 value = new;
116 value_size = size;
117 goto retry;
118 }
119
Vivek Goyal121ab822016-07-13 10:44:49 -0400120 error = security_inode_copy_up_xattr(name);
121 if (error < 0 && error != -EOPNOTSUPP)
122 break;
123 if (error == 1) {
124 error = 0;
125 continue; /* Discard */
126 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200127 error = vfs_setxattr(new, name, value, size, 0);
128 if (error)
Vito Caputoe4ad29f2015-10-24 07:19:46 -0500129 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200130 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200131 kfree(value);
132out:
133 kfree(buf);
134 return error;
135}
136
137static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
138{
139 struct file *old_file;
140 struct file *new_file;
141 loff_t old_pos = 0;
142 loff_t new_pos = 0;
143 int error = 0;
144
145 if (len == 0)
146 return 0;
147
David Howells04803342015-09-18 11:45:12 +0100148 old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200149 if (IS_ERR(old_file))
150 return PTR_ERR(old_file);
151
David Howells04803342015-09-18 11:45:12 +0100152 new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200153 if (IS_ERR(new_file)) {
154 error = PTR_ERR(new_file);
155 goto out_fput;
156 }
157
Amir Goldstein2ea98462016-09-23 11:38:12 +0300158 /* Try to use clone_file_range to clone up within the same fs */
159 error = vfs_clone_file_range(old_file, 0, new_file, 0, len);
160 if (!error)
161 goto out;
162 /* Couldn't clone, so now we try to copy the data */
163 error = 0;
164
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200165 /* FIXME: copy up sparse files efficiently */
166 while (len) {
167 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
168 long bytes;
169
170 if (len < this_len)
171 this_len = len;
172
173 if (signal_pending_state(TASK_KILLABLE, current)) {
174 error = -EINTR;
175 break;
176 }
177
178 bytes = do_splice_direct(old_file, &old_pos,
179 new_file, &new_pos,
180 this_len, SPLICE_F_MOVE);
181 if (bytes <= 0) {
182 error = bytes;
183 break;
184 }
185 WARN_ON(old_pos != new_pos);
186
187 len -= bytes;
188 }
Amir Goldstein2ea98462016-09-23 11:38:12 +0300189out:
Miklos Szeredi641089c2016-10-31 14:42:14 +0100190 if (!error)
191 error = vfs_fsync(new_file, 0);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200192 fput(new_file);
193out_fput:
194 fput(old_file);
195 return error;
196}
197
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200198static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
199{
200 struct iattr attr = {
201 .ia_valid =
202 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
203 .ia_atime = stat->atime,
204 .ia_mtime = stat->mtime,
205 };
206
207 return notify_change(upperdentry, &attr, NULL);
208}
209
210int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
211{
212 int err = 0;
213
214 if (!S_ISLNK(stat->mode)) {
215 struct iattr attr = {
216 .ia_valid = ATTR_MODE,
217 .ia_mode = stat->mode,
218 };
219 err = notify_change(upperdentry, &attr, NULL);
220 }
221 if (!err) {
222 struct iattr attr = {
223 .ia_valid = ATTR_UID | ATTR_GID,
224 .ia_uid = stat->uid,
225 .ia_gid = stat->gid,
226 };
227 err = notify_change(upperdentry, &attr, NULL);
228 }
229 if (!err)
230 ovl_set_timestamps(upperdentry, stat);
231
232 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200233}
234
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200235struct ovl_fh *ovl_encode_real_fh(struct dentry *real, bool is_upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300236{
237 struct ovl_fh *fh;
238 int fh_type, fh_len, dwords;
239 void *buf;
240 int buflen = MAX_HANDLE_SZ;
Amir Goldstein05122442018-01-11 08:25:32 +0200241 uuid_t *uuid = &real->d_sb->s_uuid;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300242
Michal Hocko0ee931c2017-09-13 16:28:29 -0700243 buf = kmalloc(buflen, GFP_KERNEL);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300244 if (!buf)
245 return ERR_PTR(-ENOMEM);
246
247 /*
248 * We encode a non-connectable file handle for non-dir, because we
249 * only need to find the lower inode number and we don't want to pay
250 * the price or reconnecting the dentry.
251 */
252 dwords = buflen >> 2;
Amir Goldstein05122442018-01-11 08:25:32 +0200253 fh_type = exportfs_encode_fh(real, buf, &dwords, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300254 buflen = (dwords << 2);
255
256 fh = ERR_PTR(-EIO);
257 if (WARN_ON(fh_type < 0) ||
258 WARN_ON(buflen > MAX_HANDLE_SZ) ||
259 WARN_ON(fh_type == FILEID_INVALID))
260 goto out;
261
262 BUILD_BUG_ON(MAX_HANDLE_SZ + offsetof(struct ovl_fh, fid) > 255);
263 fh_len = offsetof(struct ovl_fh, fid) + buflen;
264 fh = kmalloc(fh_len, GFP_KERNEL);
265 if (!fh) {
266 fh = ERR_PTR(-ENOMEM);
267 goto out;
268 }
269
270 fh->version = OVL_FH_VERSION;
271 fh->magic = OVL_FH_MAGIC;
272 fh->type = fh_type;
273 fh->flags = OVL_FH_FLAG_CPU_ENDIAN;
Amir Goldstein54fb3472017-06-21 15:28:38 +0300274 /*
275 * When we will want to decode an overlay dentry from this handle
276 * and all layers are on the same fs, if we get a disconncted real
277 * dentry when we decode fid, the only way to tell if we should assign
278 * it to upperdentry or to lowerstack is by checking this flag.
279 */
280 if (is_upper)
281 fh->flags |= OVL_FH_FLAG_PATH_UPPER;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300282 fh->len = fh_len;
283 fh->uuid = *uuid;
284 memcpy(fh->fid, buf, buflen);
285
286out:
287 kfree(buf);
288 return fh;
289}
290
Amir Goldstein9678e632018-01-03 19:34:45 +0200291int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
292 struct dentry *upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300293{
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300294 const struct ovl_fh *fh = NULL;
295 int err;
296
297 /*
298 * When lower layer doesn't support export operations store a 'null' fh,
299 * so we can use the overlay.origin xattr to distignuish between a copy
300 * up and a pure upper inode.
301 */
Amir Goldstein02bcd152017-06-21 15:28:36 +0300302 if (ovl_can_decode_fh(lower->d_sb)) {
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200303 fh = ovl_encode_real_fh(lower, false);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300304 if (IS_ERR(fh))
305 return PTR_ERR(fh);
306 }
307
Miklos Szeredi6266d462017-05-18 16:11:24 +0200308 /*
309 * Do not fail when upper doesn't support xattrs.
310 */
311 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_ORIGIN, fh,
312 fh ? fh->len : 0, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300313 kfree(fh);
314
315 return err;
316}
317
Amir Goldstein016b7202018-01-11 14:01:08 +0200318/* Store file handle of @upper dir in @index dir entry */
319static int ovl_set_upper_fh(struct dentry *upper, struct dentry *index)
320{
321 const struct ovl_fh *fh;
322 int err;
323
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200324 fh = ovl_encode_real_fh(upper, true);
Amir Goldstein016b7202018-01-11 14:01:08 +0200325 if (IS_ERR(fh))
326 return PTR_ERR(fh);
327
328 err = ovl_do_setxattr(index, OVL_XATTR_UPPER, fh, fh->len, 0);
329
330 kfree(fh);
331 return err;
332}
333
334/*
335 * Create and install index entry.
336 *
337 * Caller must hold i_mutex on indexdir.
338 */
339static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
340 struct dentry *upper)
341{
342 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
343 struct inode *dir = d_inode(indexdir);
344 struct dentry *index = NULL;
345 struct dentry *temp = NULL;
346 struct qstr name = { };
347 int err;
348
349 /*
350 * For now this is only used for creating index entry for directories,
351 * because non-dir are copied up directly to index and then hardlinked
352 * to upper dir.
353 *
354 * TODO: implement create index for non-dir, so we can call it when
355 * encoding file handle for non-dir in case index does not exist.
356 */
357 if (WARN_ON(!d_is_dir(dentry)))
358 return -EIO;
359
360 /* Directory not expected to be indexed before copy up */
361 if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
362 return -EIO;
363
364 err = ovl_get_index_name(origin, &name);
365 if (err)
366 return err;
367
368 temp = ovl_lookup_temp(indexdir);
369 if (IS_ERR(temp))
370 goto temp_err;
371
Amir Goldstein6cf00762018-05-16 17:04:00 +0300372 err = ovl_do_mkdir(dir, temp, S_IFDIR);
Amir Goldstein016b7202018-01-11 14:01:08 +0200373 if (err)
374 goto out;
375
376 err = ovl_set_upper_fh(upper, temp);
377 if (err)
378 goto out_cleanup;
379
380 index = lookup_one_len(name.name, indexdir, name.len);
381 if (IS_ERR(index)) {
382 err = PTR_ERR(index);
383 } else {
384 err = ovl_do_rename(dir, temp, dir, index, 0);
385 dput(index);
386 }
387
388 if (err)
389 goto out_cleanup;
390
391out:
392 dput(temp);
393 kfree(name.name);
394 return err;
395
396temp_err:
397 err = PTR_ERR(temp);
398 temp = NULL;
399 goto out;
400
401out_cleanup:
402 ovl_cleanup(dir, temp);
403 goto out;
404}
405
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200406struct ovl_copy_up_ctx {
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200407 struct dentry *parent;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200408 struct dentry *dentry;
409 struct path lowerpath;
410 struct kstat stat;
411 struct kstat pstat;
412 const char *link;
Amir Goldstein59be0972017-06-20 15:25:46 +0300413 struct dentry *destdir;
414 struct qstr destname;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200415 struct dentry *workdir;
416 bool tmpfile;
Amir Goldstein59be0972017-06-20 15:25:46 +0300417 bool origin;
Amir Goldstein016b7202018-01-11 14:01:08 +0200418 bool indexed;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200419};
420
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300421static int ovl_link_up(struct ovl_copy_up_ctx *c)
422{
423 int err;
424 struct dentry *upper;
425 struct dentry *upperdir = ovl_dentry_upper(c->parent);
426 struct inode *udir = d_inode(upperdir);
427
428 /* Mark parent "impure" because it may now contain non-pure upper */
429 err = ovl_set_impure(c->parent, upperdir);
430 if (err)
431 return err;
432
433 err = ovl_set_nlink_lower(c->dentry);
434 if (err)
435 return err;
436
437 inode_lock_nested(udir, I_MUTEX_PARENT);
438 upper = lookup_one_len(c->dentry->d_name.name, upperdir,
439 c->dentry->d_name.len);
440 err = PTR_ERR(upper);
441 if (!IS_ERR(upper)) {
Amir Goldstein6cf00762018-05-16 17:04:00 +0300442 err = ovl_do_link(ovl_dentry_upper(c->dentry), udir, upper);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300443 dput(upper);
444
445 if (!err) {
446 /* Restore timestamps on parent (best effort) */
447 ovl_set_timestamps(upperdir, &c->pstat);
448 ovl_dentry_set_upper_alias(c->dentry);
449 }
450 }
451 inode_unlock(udir);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300452 if (err)
453 return err;
454
455 err = ovl_set_nlink_upper(c->dentry);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300456
457 return err;
458}
459
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200460static int ovl_install_temp(struct ovl_copy_up_ctx *c, struct dentry *temp,
461 struct dentry **newdentry)
Amir Goldstein15932c42017-05-16 01:26:49 +0300462{
463 int err;
464 struct dentry *upper;
Amir Goldstein59be0972017-06-20 15:25:46 +0300465 struct inode *udir = d_inode(c->destdir);
Amir Goldstein15932c42017-05-16 01:26:49 +0300466
Amir Goldstein59be0972017-06-20 15:25:46 +0300467 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
Amir Goldstein15932c42017-05-16 01:26:49 +0300468 if (IS_ERR(upper))
469 return PTR_ERR(upper);
470
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200471 if (c->tmpfile)
Amir Goldstein6cf00762018-05-16 17:04:00 +0300472 err = ovl_do_link(temp, udir, upper);
Amir Goldstein15932c42017-05-16 01:26:49 +0300473 else
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200474 err = ovl_do_rename(d_inode(c->workdir), temp, udir, upper, 0);
Amir Goldstein15932c42017-05-16 01:26:49 +0300475
Amir Goldstein59be0972017-06-20 15:25:46 +0300476 if (!err)
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200477 *newdentry = dget(c->tmpfile ? upper : temp);
Amir Goldstein15932c42017-05-16 01:26:49 +0300478 dput(upper);
479
480 return err;
481}
482
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200483static int ovl_get_tmpfile(struct ovl_copy_up_ctx *c, struct dentry **tempp)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200484{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200485 int err;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200486 struct dentry *temp;
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400487 const struct cred *old_creds = NULL;
488 struct cred *new_creds = NULL;
Al Viro32a3d842016-12-04 17:33:17 +0000489 struct cattr cattr = {
490 /* Can't properly set mode on creation because of the umask */
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200491 .mode = c->stat.mode & S_IFMT,
492 .rdev = c->stat.rdev,
493 .link = c->link
Al Viro32a3d842016-12-04 17:33:17 +0000494 };
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200495
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200496 err = security_inode_copy_up(c->dentry, &new_creds);
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400497 if (err < 0)
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200498 goto out;
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400499
500 if (new_creds)
501 old_creds = override_creds(new_creds);
502
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200503 if (c->tmpfile) {
504 temp = ovl_do_tmpfile(c->workdir, c->stat.mode);
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200505 if (IS_ERR(temp))
506 goto temp_err;
507 } else {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200508 temp = ovl_lookup_temp(c->workdir);
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200509 if (IS_ERR(temp))
510 goto temp_err;
511
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200512 err = ovl_create_real(d_inode(c->workdir), temp, &cattr,
Amir Goldstein6cf00762018-05-16 17:04:00 +0300513 NULL);
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200514 if (err) {
515 dput(temp);
516 goto out;
517 }
Amir Goldstein8137ae22017-05-16 08:45:46 +0300518 }
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200519 err = 0;
520 *tempp = temp;
521out:
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400522 if (new_creds) {
523 revert_creds(old_creds);
524 put_cred(new_creds);
525 }
526
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200527 return err;
528
529temp_err:
530 err = PTR_ERR(temp);
531 goto out;
532}
533
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200534static int ovl_copy_up_inode(struct ovl_copy_up_ctx *c, struct dentry *temp)
Amir Goldstein02209d12017-05-19 15:16:21 +0300535{
536 int err;
537
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200538 if (S_ISREG(c->stat.mode)) {
Amir Goldstein02209d12017-05-19 15:16:21 +0300539 struct path upperpath;
540
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200541 ovl_path_upper(c->dentry, &upperpath);
Amir Goldstein02209d12017-05-19 15:16:21 +0300542 BUG_ON(upperpath.dentry != NULL);
543 upperpath.dentry = temp;
544
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200545 err = ovl_copy_up_data(&c->lowerpath, &upperpath, c->stat.size);
Amir Goldstein02209d12017-05-19 15:16:21 +0300546 if (err)
547 return err;
548 }
549
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200550 err = ovl_copy_xattr(c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300551 if (err)
552 return err;
553
554 inode_lock(temp->d_inode);
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200555 err = ovl_set_attr(temp, &c->stat);
Amir Goldstein02209d12017-05-19 15:16:21 +0300556 inode_unlock(temp->d_inode);
557 if (err)
558 return err;
559
560 /*
561 * Store identifier of lower inode in upper inode xattr to
562 * allow lookup of the copy up origin inode.
563 *
564 * Don't set origin when we are breaking the association with a lower
565 * hard link.
566 */
Amir Goldstein59be0972017-06-20 15:25:46 +0300567 if (c->origin) {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200568 err = ovl_set_origin(c->dentry, c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300569 if (err)
570 return err;
571 }
572
573 return 0;
574}
575
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200576static int ovl_copy_up_locked(struct ovl_copy_up_ctx *c)
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200577{
Amir Goldstein59be0972017-06-20 15:25:46 +0300578 struct inode *udir = c->destdir->d_inode;
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300579 struct inode *inode;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200580 struct dentry *newdentry = NULL;
581 struct dentry *temp = NULL;
582 int err;
583
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200584 err = ovl_get_tmpfile(c, &temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200585 if (err)
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200586 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200587
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200588 err = ovl_copy_up_inode(c, temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200589 if (err)
590 goto out_cleanup;
591
Amir Goldstein016b7202018-01-11 14:01:08 +0200592 if (S_ISDIR(c->stat.mode) && c->indexed) {
593 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
594 if (err)
595 goto out_cleanup;
596 }
597
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200598 if (c->tmpfile) {
Amir Goldstein15932c42017-05-16 01:26:49 +0300599 inode_lock_nested(udir, I_MUTEX_PARENT);
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200600 err = ovl_install_temp(c, temp, &newdentry);
Amir Goldstein15932c42017-05-16 01:26:49 +0300601 inode_unlock(udir);
602 } else {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200603 err = ovl_install_temp(c, temp, &newdentry);
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200604 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200605 if (err)
606 goto out_cleanup;
607
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300608 inode = d_inode(c->dentry);
609 ovl_inode_update(inode, newdentry);
610 if (S_ISDIR(inode->i_mode))
611 ovl_set_flag(OVL_WHITEOUTS, inode);
612
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200613out:
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200614 dput(temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200615 return err;
616
617out_cleanup:
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200618 if (!c->tmpfile)
619 ovl_cleanup(d_inode(c->workdir), temp);
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200620 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200621}
622
623/*
624 * Copy up a single dentry
625 *
Miklos Szeredia6c60652016-12-16 11:02:56 +0100626 * All renames start with copy up of source if necessary. The actual
627 * rename will only proceed once the copy up was successful. Copy up uses
628 * upper parent i_mutex for exclusion. Since rename can change d_parent it
629 * is possible that the copy up will lock the old parent. At that point
630 * the file will have already been copied up anyway.
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200631 */
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200632static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200633{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200634 int err;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200635 struct ovl_fs *ofs = c->dentry->d_sb->s_fs_info;
Amir Goldstein016b7202018-01-11 14:01:08 +0200636 bool to_index = false;
Amir Goldstein59be0972017-06-20 15:25:46 +0300637
Amir Goldstein016b7202018-01-11 14:01:08 +0200638 /*
639 * Indexed non-dir is copied up directly to the index entry and then
640 * hardlinked to upper dir. Indexed dir is copied up to indexdir,
641 * then index entry is created and then copied up dir installed.
642 * Copying dir up to indexdir instead of workdir simplifies locking.
643 */
644 if (ovl_need_index(c->dentry)) {
645 c->indexed = true;
646 if (S_ISDIR(c->stat.mode))
647 c->workdir = ovl_indexdir(c->dentry->d_sb);
648 else
649 to_index = true;
650 }
651
652 if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
Amir Goldstein59be0972017-06-20 15:25:46 +0300653 c->origin = true;
654
Amir Goldstein016b7202018-01-11 14:01:08 +0200655 if (to_index) {
Amir Goldstein59be0972017-06-20 15:25:46 +0300656 c->destdir = ovl_indexdir(c->dentry->d_sb);
657 err = ovl_get_index_name(c->lowerpath.dentry, &c->destname);
658 if (err)
659 return err;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300660 } else if (WARN_ON(!c->parent)) {
661 /* Disconnected dentry must be copied up to index dir */
662 return -EIO;
Amir Goldstein59be0972017-06-20 15:25:46 +0300663 } else {
664 /*
665 * Mark parent "impure" because it may now contain non-pure
666 * upper
667 */
668 err = ovl_set_impure(c->parent, c->destdir);
669 if (err)
670 return err;
671 }
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300672
Amir Goldstein01ad3eb2017-01-17 06:34:57 +0200673 /* Should we copyup with O_TMPFILE or with workdir? */
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200674 if (S_ISREG(c->stat.mode) && ofs->tmpfile) {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200675 c->tmpfile = true;
Amir Goldstein59be0972017-06-20 15:25:46 +0300676 err = ovl_copy_up_locked(c);
677 } else {
Amir Goldstein5820dc02017-09-25 16:39:55 +0300678 err = ovl_lock_rename_workdir(c->workdir, c->destdir);
679 if (!err) {
Amir Goldstein59be0972017-06-20 15:25:46 +0300680 err = ovl_copy_up_locked(c);
681 unlock_rename(c->workdir, c->destdir);
682 }
Amir Goldstein01ad3eb2017-01-17 06:34:57 +0200683 }
684
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300685
686 if (err)
687 goto out;
688
689 if (c->indexed)
Amir Goldstein016b7202018-01-11 14:01:08 +0200690 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
691
692 if (to_index) {
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300693 /* Initialize nlink for copy up of disconnected dentry */
694 err = ovl_set_nlink_upper(c->dentry);
695 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300696 struct inode *udir = d_inode(c->destdir);
697
698 /* Restore timestamps on parent (best effort) */
699 inode_lock(udir);
700 ovl_set_timestamps(c->destdir, &c->pstat);
701 inode_unlock(udir);
702
703 ovl_dentry_set_upper_alias(c->dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200704 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200705
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300706out:
707 if (to_index)
708 kfree(c->destname.name);
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200709 return err;
710}
711
712static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
713 int flags)
714{
715 int err;
716 DEFINE_DELAYED_CALL(done);
717 struct path parentpath;
718 struct ovl_copy_up_ctx ctx = {
719 .parent = parent,
720 .dentry = dentry,
721 .workdir = ovl_workdir(dentry),
722 };
723
724 if (WARN_ON(!ctx.workdir))
725 return -EROFS;
726
727 ovl_path_lower(dentry, &ctx.lowerpath);
728 err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
729 STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
730 if (err)
731 return err;
732
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300733 if (parent) {
734 ovl_path_upper(parent, &parentpath);
735 ctx.destdir = parentpath.dentry;
736 ctx.destname = dentry->d_name;
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200737
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300738 err = vfs_getattr(&parentpath, &ctx.pstat,
739 STATX_ATIME | STATX_MTIME,
740 AT_STATX_SYNC_AS_STAT);
741 if (err)
742 return err;
743 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200744
745 /* maybe truncate regular file. this has no effect on dirs */
746 if (flags & O_TRUNC)
747 ctx.stat.size = 0;
748
749 if (S_ISLNK(ctx.stat.mode)) {
750 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
751 if (IS_ERR(ctx.link))
752 return PTR_ERR(ctx.link);
753 }
754 ovl_do_check_copy_up(ctx.lowerpath.dentry);
755
Miklos Szeredifd210b72017-07-04 22:03:18 +0200756 err = ovl_copy_up_start(dentry);
757 /* err < 0: interrupted, err > 0: raced with another copy-up */
758 if (unlikely(err)) {
759 if (err > 0)
760 err = 0;
761 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300762 if (!ovl_dentry_upper(dentry))
763 err = ovl_do_copy_up(&ctx);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300764 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300765 err = ovl_link_up(&ctx);
Miklos Szeredifd210b72017-07-04 22:03:18 +0200766 ovl_copy_up_end(dentry);
767 }
Miklos Szeredi7764235b2016-10-04 14:40:45 +0200768 do_delayed_call(&done);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200769
770 return err;
771}
772
Amir Goldstein9aba6522016-11-12 21:36:03 +0200773int ovl_copy_up_flags(struct dentry *dentry, int flags)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200774{
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400775 int err = 0;
776 const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300777 bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
778
779 /*
780 * With NFS export, copy up can get called for a disconnected non-dir.
781 * In this case, we will copy up lower inode to index dir without
782 * linking it to upper dir.
783 */
784 if (WARN_ON(disconnected && d_is_dir(dentry)))
785 return -EIO;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200786
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200787 while (!err) {
788 struct dentry *next;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300789 struct dentry *parent = NULL;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200790
Amir Goldstein59be0972017-06-20 15:25:46 +0300791 /*
792 * Check if copy-up has happened as well as for upper alias (in
793 * case of hard links) is there.
794 *
795 * Both checks are lockless:
796 * - false negatives: will recheck under oi->lock
797 * - false positives:
798 * + ovl_dentry_upper() uses memory barriers to ensure the
799 * upper dentry is up-to-date
800 * + ovl_dentry_has_upper_alias() relies on locking of
801 * upper parent i_rwsem to prevent reordering copy-up
802 * with rename.
803 */
804 if (ovl_dentry_upper(dentry) &&
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300805 (ovl_dentry_has_upper_alias(dentry) || disconnected))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200806 break;
807
808 next = dget(dentry);
809 /* find the topmost dentry not yet copied up */
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300810 for (; !disconnected;) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200811 parent = dget_parent(next);
812
Amir Goldstein59be0972017-06-20 15:25:46 +0300813 if (ovl_dentry_upper(parent))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200814 break;
815
816 dput(next);
817 next = parent;
818 }
819
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200820 err = ovl_copy_up_one(parent, next, flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200821
822 dput(parent);
823 dput(next);
824 }
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400825 revert_creds(old_cred);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200826
827 return err;
828}
Amir Goldstein9aba6522016-11-12 21:36:03 +0200829
830int ovl_copy_up(struct dentry *dentry)
831{
832 return ovl_copy_up_flags(dentry, 0);
833}