blob: 65ee07e3614168fc01d9eca9cc1483e48b6d3bea [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
Miklos Szeredi670c2322018-07-18 15:44:44 +020028static int ovl_ccup_set(const char *buf, const struct kernel_param *param)
David Howellsfb5bb2c32015-07-07 15:04:44 +010029{
Miklos Szeredi670c2322018-07-18 15:44:44 +020030 pr_warn("overlayfs: \"check_copy_up\" module option is obsolete\n");
David Howellsfb5bb2c32015-07-07 15:04:44 +010031 return 0;
32}
33
Miklos Szeredi670c2322018-07-18 15:44:44 +020034static int ovl_ccup_get(char *buf, const struct kernel_param *param)
David Howellsfb5bb2c32015-07-07 15:04:44 +010035{
Miklos Szeredi670c2322018-07-18 15:44:44 +020036 return sprintf(buf, "N\n");
David Howellsfb5bb2c32015-07-07 15:04:44 +010037}
38
Miklos Szeredi670c2322018-07-18 15:44:44 +020039module_param_call(check_copy_up, ovl_ccup_set, ovl_ccup_get, NULL, 0644);
40MODULE_PARM_DESC(ovl_check_copy_up, "Obsolete; does nothing");
41
Miklos Szeredie9be9d52014-10-24 00:14:38 +020042int ovl_copy_xattr(struct dentry *old, struct dentry *new)
43{
Vito Caputoe4ad29f2015-10-24 07:19:46 -050044 ssize_t list_size, size, value_size = 0;
45 char *buf, *name, *value = NULL;
46 int uninitialized_var(error);
Miklos Szeredi8b326c62016-09-16 14:12:11 +020047 size_t slen;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020048
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020049 if (!(old->d_inode->i_opflags & IOP_XATTR) ||
50 !(new->d_inode->i_opflags & IOP_XATTR))
Miklos Szeredie9be9d52014-10-24 00:14:38 +020051 return 0;
52
53 list_size = vfs_listxattr(old, NULL, 0);
54 if (list_size <= 0) {
55 if (list_size == -EOPNOTSUPP)
56 return 0;
57 return list_size;
58 }
59
60 buf = kzalloc(list_size, GFP_KERNEL);
61 if (!buf)
62 return -ENOMEM;
63
Miklos Szeredie9be9d52014-10-24 00:14:38 +020064 list_size = vfs_listxattr(old, buf, list_size);
65 if (list_size <= 0) {
66 error = list_size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050067 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020068 }
69
Miklos Szeredi8b326c62016-09-16 14:12:11 +020070 for (name = buf; list_size; name += slen) {
71 slen = strnlen(name, list_size) + 1;
72
73 /* underlying fs providing us with an broken xattr list? */
74 if (WARN_ON(slen > list_size)) {
75 error = -EIO;
76 break;
77 }
78 list_size -= slen;
79
Miklos Szeredi09562542016-08-08 15:08:49 +020080 if (ovl_is_private_xattr(name))
81 continue;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050082retry:
83 size = vfs_getxattr(old, name, value, value_size);
84 if (size == -ERANGE)
85 size = vfs_getxattr(old, name, NULL, 0);
86
Miklos Szeredi97daf8b2015-11-10 17:08:41 +010087 if (size < 0) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +020088 error = size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050089 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020090 }
Vito Caputoe4ad29f2015-10-24 07:19:46 -050091
92 if (size > value_size) {
93 void *new;
94
95 new = krealloc(value, size, GFP_KERNEL);
96 if (!new) {
97 error = -ENOMEM;
98 break;
99 }
100 value = new;
101 value_size = size;
102 goto retry;
103 }
104
Vivek Goyal121ab822016-07-13 10:44:49 -0400105 error = security_inode_copy_up_xattr(name);
106 if (error < 0 && error != -EOPNOTSUPP)
107 break;
108 if (error == 1) {
109 error = 0;
110 continue; /* Discard */
111 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200112 error = vfs_setxattr(new, name, value, size, 0);
113 if (error)
Vito Caputoe4ad29f2015-10-24 07:19:46 -0500114 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200115 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200116 kfree(value);
117out:
118 kfree(buf);
119 return error;
120}
121
122static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
123{
124 struct file *old_file;
125 struct file *new_file;
126 loff_t old_pos = 0;
127 loff_t new_pos = 0;
128 int error = 0;
129
130 if (len == 0)
131 return 0;
132
David Howells04803342015-09-18 11:45:12 +0100133 old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200134 if (IS_ERR(old_file))
135 return PTR_ERR(old_file);
136
David Howells04803342015-09-18 11:45:12 +0100137 new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200138 if (IS_ERR(new_file)) {
139 error = PTR_ERR(new_file);
140 goto out_fput;
141 }
142
Amir Goldstein2ea98462016-09-23 11:38:12 +0300143 /* Try to use clone_file_range to clone up within the same fs */
144 error = vfs_clone_file_range(old_file, 0, new_file, 0, len);
145 if (!error)
146 goto out;
147 /* Couldn't clone, so now we try to copy the data */
148 error = 0;
149
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200150 /* FIXME: copy up sparse files efficiently */
151 while (len) {
152 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
153 long bytes;
154
155 if (len < this_len)
156 this_len = len;
157
158 if (signal_pending_state(TASK_KILLABLE, current)) {
159 error = -EINTR;
160 break;
161 }
162
163 bytes = do_splice_direct(old_file, &old_pos,
164 new_file, &new_pos,
165 this_len, SPLICE_F_MOVE);
166 if (bytes <= 0) {
167 error = bytes;
168 break;
169 }
170 WARN_ON(old_pos != new_pos);
171
172 len -= bytes;
173 }
Amir Goldstein2ea98462016-09-23 11:38:12 +0300174out:
Miklos Szeredi641089c2016-10-31 14:42:14 +0100175 if (!error)
176 error = vfs_fsync(new_file, 0);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200177 fput(new_file);
178out_fput:
179 fput(old_file);
180 return error;
181}
182
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200183static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
184{
185 struct iattr attr = {
186 .ia_valid =
187 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
188 .ia_atime = stat->atime,
189 .ia_mtime = stat->mtime,
190 };
191
192 return notify_change(upperdentry, &attr, NULL);
193}
194
195int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
196{
197 int err = 0;
198
199 if (!S_ISLNK(stat->mode)) {
200 struct iattr attr = {
201 .ia_valid = ATTR_MODE,
202 .ia_mode = stat->mode,
203 };
204 err = notify_change(upperdentry, &attr, NULL);
205 }
206 if (!err) {
207 struct iattr attr = {
208 .ia_valid = ATTR_UID | ATTR_GID,
209 .ia_uid = stat->uid,
210 .ia_gid = stat->gid,
211 };
212 err = notify_change(upperdentry, &attr, NULL);
213 }
214 if (!err)
215 ovl_set_timestamps(upperdentry, stat);
216
217 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200218}
219
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200220struct ovl_fh *ovl_encode_real_fh(struct dentry *real, bool is_upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300221{
222 struct ovl_fh *fh;
223 int fh_type, fh_len, dwords;
224 void *buf;
225 int buflen = MAX_HANDLE_SZ;
Amir Goldstein05122442018-01-11 08:25:32 +0200226 uuid_t *uuid = &real->d_sb->s_uuid;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300227
Michal Hocko0ee931c2017-09-13 16:28:29 -0700228 buf = kmalloc(buflen, GFP_KERNEL);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300229 if (!buf)
230 return ERR_PTR(-ENOMEM);
231
232 /*
233 * We encode a non-connectable file handle for non-dir, because we
234 * only need to find the lower inode number and we don't want to pay
235 * the price or reconnecting the dentry.
236 */
237 dwords = buflen >> 2;
Amir Goldstein05122442018-01-11 08:25:32 +0200238 fh_type = exportfs_encode_fh(real, buf, &dwords, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300239 buflen = (dwords << 2);
240
241 fh = ERR_PTR(-EIO);
242 if (WARN_ON(fh_type < 0) ||
243 WARN_ON(buflen > MAX_HANDLE_SZ) ||
244 WARN_ON(fh_type == FILEID_INVALID))
245 goto out;
246
247 BUILD_BUG_ON(MAX_HANDLE_SZ + offsetof(struct ovl_fh, fid) > 255);
248 fh_len = offsetof(struct ovl_fh, fid) + buflen;
249 fh = kmalloc(fh_len, GFP_KERNEL);
250 if (!fh) {
251 fh = ERR_PTR(-ENOMEM);
252 goto out;
253 }
254
255 fh->version = OVL_FH_VERSION;
256 fh->magic = OVL_FH_MAGIC;
257 fh->type = fh_type;
258 fh->flags = OVL_FH_FLAG_CPU_ENDIAN;
Amir Goldstein54fb3472017-06-21 15:28:38 +0300259 /*
260 * When we will want to decode an overlay dentry from this handle
261 * and all layers are on the same fs, if we get a disconncted real
262 * dentry when we decode fid, the only way to tell if we should assign
263 * it to upperdentry or to lowerstack is by checking this flag.
264 */
265 if (is_upper)
266 fh->flags |= OVL_FH_FLAG_PATH_UPPER;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300267 fh->len = fh_len;
268 fh->uuid = *uuid;
269 memcpy(fh->fid, buf, buflen);
270
271out:
272 kfree(buf);
273 return fh;
274}
275
Amir Goldstein9678e632018-01-03 19:34:45 +0200276int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
277 struct dentry *upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300278{
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300279 const struct ovl_fh *fh = NULL;
280 int err;
281
282 /*
283 * When lower layer doesn't support export operations store a 'null' fh,
284 * so we can use the overlay.origin xattr to distignuish between a copy
285 * up and a pure upper inode.
286 */
Amir Goldstein02bcd152017-06-21 15:28:36 +0300287 if (ovl_can_decode_fh(lower->d_sb)) {
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200288 fh = ovl_encode_real_fh(lower, false);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300289 if (IS_ERR(fh))
290 return PTR_ERR(fh);
291 }
292
Miklos Szeredi6266d462017-05-18 16:11:24 +0200293 /*
294 * Do not fail when upper doesn't support xattrs.
295 */
296 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_ORIGIN, fh,
297 fh ? fh->len : 0, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300298 kfree(fh);
299
300 return err;
301}
302
Amir Goldstein016b7202018-01-11 14:01:08 +0200303/* Store file handle of @upper dir in @index dir entry */
304static int ovl_set_upper_fh(struct dentry *upper, struct dentry *index)
305{
306 const struct ovl_fh *fh;
307 int err;
308
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200309 fh = ovl_encode_real_fh(upper, true);
Amir Goldstein016b7202018-01-11 14:01:08 +0200310 if (IS_ERR(fh))
311 return PTR_ERR(fh);
312
313 err = ovl_do_setxattr(index, OVL_XATTR_UPPER, fh, fh->len, 0);
314
315 kfree(fh);
316 return err;
317}
318
319/*
320 * Create and install index entry.
321 *
322 * Caller must hold i_mutex on indexdir.
323 */
324static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
325 struct dentry *upper)
326{
327 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
328 struct inode *dir = d_inode(indexdir);
329 struct dentry *index = NULL;
330 struct dentry *temp = NULL;
331 struct qstr name = { };
332 int err;
333
334 /*
335 * For now this is only used for creating index entry for directories,
336 * because non-dir are copied up directly to index and then hardlinked
337 * to upper dir.
338 *
339 * TODO: implement create index for non-dir, so we can call it when
340 * encoding file handle for non-dir in case index does not exist.
341 */
342 if (WARN_ON(!d_is_dir(dentry)))
343 return -EIO;
344
345 /* Directory not expected to be indexed before copy up */
346 if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
347 return -EIO;
348
349 err = ovl_get_index_name(origin, &name);
350 if (err)
351 return err;
352
Amir Goldstein137ec522018-05-16 17:51:25 +0300353 temp = ovl_create_temp(indexdir, OVL_CATTR(S_IFDIR | 0));
Miklos Szeredib148cba2018-05-31 11:06:11 +0200354 err = PTR_ERR(temp);
Amir Goldstein016b7202018-01-11 14:01:08 +0200355 if (IS_ERR(temp))
Miklos Szeredib148cba2018-05-31 11:06:11 +0200356 goto free_name;
Amir Goldstein016b7202018-01-11 14:01:08 +0200357
Amir Goldstein016b7202018-01-11 14:01:08 +0200358 err = ovl_set_upper_fh(upper, temp);
359 if (err)
Miklos Szeredib148cba2018-05-31 11:06:11 +0200360 goto out;
Amir Goldstein016b7202018-01-11 14:01:08 +0200361
362 index = lookup_one_len(name.name, indexdir, name.len);
363 if (IS_ERR(index)) {
364 err = PTR_ERR(index);
365 } else {
366 err = ovl_do_rename(dir, temp, dir, index, 0);
367 dput(index);
368 }
Amir Goldstein016b7202018-01-11 14:01:08 +0200369out:
Miklos Szeredib148cba2018-05-31 11:06:11 +0200370 if (err)
371 ovl_cleanup(dir, temp);
Amir Goldstein016b7202018-01-11 14:01:08 +0200372 dput(temp);
Miklos Szeredib148cba2018-05-31 11:06:11 +0200373free_name:
Amir Goldstein016b7202018-01-11 14:01:08 +0200374 kfree(name.name);
375 return err;
Amir Goldstein016b7202018-01-11 14:01:08 +0200376}
377
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200378struct ovl_copy_up_ctx {
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200379 struct dentry *parent;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200380 struct dentry *dentry;
381 struct path lowerpath;
382 struct kstat stat;
383 struct kstat pstat;
384 const char *link;
Amir Goldstein59be0972017-06-20 15:25:46 +0300385 struct dentry *destdir;
386 struct qstr destname;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200387 struct dentry *workdir;
388 bool tmpfile;
Amir Goldstein59be0972017-06-20 15:25:46 +0300389 bool origin;
Amir Goldstein016b7202018-01-11 14:01:08 +0200390 bool indexed;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200391};
392
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300393static int ovl_link_up(struct ovl_copy_up_ctx *c)
394{
395 int err;
396 struct dentry *upper;
397 struct dentry *upperdir = ovl_dentry_upper(c->parent);
398 struct inode *udir = d_inode(upperdir);
399
400 /* Mark parent "impure" because it may now contain non-pure upper */
401 err = ovl_set_impure(c->parent, upperdir);
402 if (err)
403 return err;
404
405 err = ovl_set_nlink_lower(c->dentry);
406 if (err)
407 return err;
408
409 inode_lock_nested(udir, I_MUTEX_PARENT);
410 upper = lookup_one_len(c->dentry->d_name.name, upperdir,
411 c->dentry->d_name.len);
412 err = PTR_ERR(upper);
413 if (!IS_ERR(upper)) {
Amir Goldstein6cf00762018-05-16 17:04:00 +0300414 err = ovl_do_link(ovl_dentry_upper(c->dentry), udir, upper);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300415 dput(upper);
416
417 if (!err) {
418 /* Restore timestamps on parent (best effort) */
419 ovl_set_timestamps(upperdir, &c->pstat);
420 ovl_dentry_set_upper_alias(c->dentry);
421 }
422 }
423 inode_unlock(udir);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300424 if (err)
425 return err;
426
427 err = ovl_set_nlink_upper(c->dentry);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300428
429 return err;
430}
431
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200432static int ovl_install_temp(struct ovl_copy_up_ctx *c, struct dentry *temp,
433 struct dentry **newdentry)
Amir Goldstein15932c42017-05-16 01:26:49 +0300434{
435 int err;
436 struct dentry *upper;
Amir Goldstein59be0972017-06-20 15:25:46 +0300437 struct inode *udir = d_inode(c->destdir);
Amir Goldstein15932c42017-05-16 01:26:49 +0300438
Amir Goldstein59be0972017-06-20 15:25:46 +0300439 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
Amir Goldstein15932c42017-05-16 01:26:49 +0300440 if (IS_ERR(upper))
441 return PTR_ERR(upper);
442
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200443 if (c->tmpfile)
Amir Goldstein6cf00762018-05-16 17:04:00 +0300444 err = ovl_do_link(temp, udir, upper);
Amir Goldstein15932c42017-05-16 01:26:49 +0300445 else
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200446 err = ovl_do_rename(d_inode(c->workdir), temp, udir, upper, 0);
Amir Goldstein15932c42017-05-16 01:26:49 +0300447
Amir Goldstein59be0972017-06-20 15:25:46 +0300448 if (!err)
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200449 *newdentry = dget(c->tmpfile ? upper : temp);
Amir Goldstein15932c42017-05-16 01:26:49 +0300450 dput(upper);
451
452 return err;
453}
454
Miklos Szeredib148cba2018-05-31 11:06:11 +0200455static struct dentry *ovl_get_tmpfile(struct ovl_copy_up_ctx *c)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200456{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200457 int err;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200458 struct dentry *temp;
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400459 const struct cred *old_creds = NULL;
460 struct cred *new_creds = NULL;
Amir Goldstein471ec5d2018-05-16 17:35:02 +0300461 struct ovl_cattr cattr = {
Al Viro32a3d842016-12-04 17:33:17 +0000462 /* Can't properly set mode on creation because of the umask */
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200463 .mode = c->stat.mode & S_IFMT,
464 .rdev = c->stat.rdev,
465 .link = c->link
Al Viro32a3d842016-12-04 17:33:17 +0000466 };
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200467
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200468 err = security_inode_copy_up(c->dentry, &new_creds);
Miklos Szeredib148cba2018-05-31 11:06:11 +0200469 temp = ERR_PTR(err);
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400470 if (err < 0)
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200471 goto out;
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400472
473 if (new_creds)
474 old_creds = override_creds(new_creds);
475
Amir Goldstein137ec522018-05-16 17:51:25 +0300476 if (c->tmpfile)
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200477 temp = ovl_do_tmpfile(c->workdir, c->stat.mode);
Amir Goldstein137ec522018-05-16 17:51:25 +0300478 else
479 temp = ovl_create_temp(c->workdir, &cattr);
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200480out:
Vivek Goyald8ad8b42016-07-13 11:13:56 -0400481 if (new_creds) {
482 revert_creds(old_creds);
483 put_cred(new_creds);
484 }
485
Miklos Szeredib148cba2018-05-31 11:06:11 +0200486 return temp;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200487}
488
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200489static int ovl_copy_up_inode(struct ovl_copy_up_ctx *c, struct dentry *temp)
Amir Goldstein02209d12017-05-19 15:16:21 +0300490{
491 int err;
492
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200493 if (S_ISREG(c->stat.mode)) {
Amir Goldstein02209d12017-05-19 15:16:21 +0300494 struct path upperpath;
495
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200496 ovl_path_upper(c->dentry, &upperpath);
Amir Goldstein02209d12017-05-19 15:16:21 +0300497 BUG_ON(upperpath.dentry != NULL);
498 upperpath.dentry = temp;
499
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200500 err = ovl_copy_up_data(&c->lowerpath, &upperpath, c->stat.size);
Amir Goldstein02209d12017-05-19 15:16:21 +0300501 if (err)
502 return err;
503 }
504
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200505 err = ovl_copy_xattr(c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300506 if (err)
507 return err;
508
509 inode_lock(temp->d_inode);
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200510 err = ovl_set_attr(temp, &c->stat);
Amir Goldstein02209d12017-05-19 15:16:21 +0300511 inode_unlock(temp->d_inode);
512 if (err)
513 return err;
514
515 /*
516 * Store identifier of lower inode in upper inode xattr to
517 * allow lookup of the copy up origin inode.
518 *
519 * Don't set origin when we are breaking the association with a lower
520 * hard link.
521 */
Amir Goldstein59be0972017-06-20 15:25:46 +0300522 if (c->origin) {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200523 err = ovl_set_origin(c->dentry, c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300524 if (err)
525 return err;
526 }
527
528 return 0;
529}
530
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200531static int ovl_copy_up_locked(struct ovl_copy_up_ctx *c)
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200532{
Amir Goldstein59be0972017-06-20 15:25:46 +0300533 struct inode *udir = c->destdir->d_inode;
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300534 struct inode *inode;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200535 struct dentry *newdentry = NULL;
Miklos Szeredib148cba2018-05-31 11:06:11 +0200536 struct dentry *temp;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200537 int err;
538
Miklos Szeredib148cba2018-05-31 11:06:11 +0200539 temp = ovl_get_tmpfile(c);
540 if (IS_ERR(temp))
541 return PTR_ERR(temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200542
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200543 err = ovl_copy_up_inode(c, temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200544 if (err)
Miklos Szeredib148cba2018-05-31 11:06:11 +0200545 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200546
Amir Goldstein016b7202018-01-11 14:01:08 +0200547 if (S_ISDIR(c->stat.mode) && c->indexed) {
548 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
549 if (err)
Miklos Szeredib148cba2018-05-31 11:06:11 +0200550 goto out;
Amir Goldstein016b7202018-01-11 14:01:08 +0200551 }
552
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200553 if (c->tmpfile) {
Amir Goldstein15932c42017-05-16 01:26:49 +0300554 inode_lock_nested(udir, I_MUTEX_PARENT);
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200555 err = ovl_install_temp(c, temp, &newdentry);
Amir Goldstein15932c42017-05-16 01:26:49 +0300556 inode_unlock(udir);
557 } else {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200558 err = ovl_install_temp(c, temp, &newdentry);
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200559 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200560 if (err)
Miklos Szeredib148cba2018-05-31 11:06:11 +0200561 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200562
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300563 inode = d_inode(c->dentry);
564 ovl_inode_update(inode, newdentry);
565 if (S_ISDIR(inode->i_mode))
566 ovl_set_flag(OVL_WHITEOUTS, inode);
567
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200568out:
Miklos Szeredib148cba2018-05-31 11:06:11 +0200569 if (err && !c->tmpfile)
570 ovl_cleanup(d_inode(c->workdir), temp);
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200571 dput(temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200572 return err;
573
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200574}
575
576/*
577 * Copy up a single dentry
578 *
Miklos Szeredia6c60652016-12-16 11:02:56 +0100579 * All renames start with copy up of source if necessary. The actual
580 * rename will only proceed once the copy up was successful. Copy up uses
581 * upper parent i_mutex for exclusion. Since rename can change d_parent it
582 * is possible that the copy up will lock the old parent. At that point
583 * the file will have already been copied up anyway.
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200584 */
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200585static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200586{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200587 int err;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200588 struct ovl_fs *ofs = c->dentry->d_sb->s_fs_info;
Amir Goldstein016b7202018-01-11 14:01:08 +0200589 bool to_index = false;
Amir Goldstein59be0972017-06-20 15:25:46 +0300590
Amir Goldstein016b7202018-01-11 14:01:08 +0200591 /*
592 * Indexed non-dir is copied up directly to the index entry and then
593 * hardlinked to upper dir. Indexed dir is copied up to indexdir,
594 * then index entry is created and then copied up dir installed.
595 * Copying dir up to indexdir instead of workdir simplifies locking.
596 */
597 if (ovl_need_index(c->dentry)) {
598 c->indexed = true;
599 if (S_ISDIR(c->stat.mode))
600 c->workdir = ovl_indexdir(c->dentry->d_sb);
601 else
602 to_index = true;
603 }
604
605 if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
Amir Goldstein59be0972017-06-20 15:25:46 +0300606 c->origin = true;
607
Amir Goldstein016b7202018-01-11 14:01:08 +0200608 if (to_index) {
Amir Goldstein59be0972017-06-20 15:25:46 +0300609 c->destdir = ovl_indexdir(c->dentry->d_sb);
610 err = ovl_get_index_name(c->lowerpath.dentry, &c->destname);
611 if (err)
612 return err;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300613 } else if (WARN_ON(!c->parent)) {
614 /* Disconnected dentry must be copied up to index dir */
615 return -EIO;
Amir Goldstein59be0972017-06-20 15:25:46 +0300616 } else {
617 /*
618 * Mark parent "impure" because it may now contain non-pure
619 * upper
620 */
621 err = ovl_set_impure(c->parent, c->destdir);
622 if (err)
623 return err;
624 }
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300625
Amir Goldstein01ad3eb2017-01-17 06:34:57 +0200626 /* Should we copyup with O_TMPFILE or with workdir? */
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200627 if (S_ISREG(c->stat.mode) && ofs->tmpfile) {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200628 c->tmpfile = true;
Amir Goldstein59be0972017-06-20 15:25:46 +0300629 err = ovl_copy_up_locked(c);
630 } else {
Amir Goldstein5820dc02017-09-25 16:39:55 +0300631 err = ovl_lock_rename_workdir(c->workdir, c->destdir);
632 if (!err) {
Amir Goldstein59be0972017-06-20 15:25:46 +0300633 err = ovl_copy_up_locked(c);
634 unlock_rename(c->workdir, c->destdir);
635 }
Amir Goldstein01ad3eb2017-01-17 06:34:57 +0200636 }
637
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300638
639 if (err)
640 goto out;
641
642 if (c->indexed)
Amir Goldstein016b7202018-01-11 14:01:08 +0200643 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
644
645 if (to_index) {
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300646 /* Initialize nlink for copy up of disconnected dentry */
647 err = ovl_set_nlink_upper(c->dentry);
648 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300649 struct inode *udir = d_inode(c->destdir);
650
651 /* Restore timestamps on parent (best effort) */
652 inode_lock(udir);
653 ovl_set_timestamps(c->destdir, &c->pstat);
654 inode_unlock(udir);
655
656 ovl_dentry_set_upper_alias(c->dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200657 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200658
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300659out:
660 if (to_index)
661 kfree(c->destname.name);
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200662 return err;
663}
664
665static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
666 int flags)
667{
668 int err;
669 DEFINE_DELAYED_CALL(done);
670 struct path parentpath;
671 struct ovl_copy_up_ctx ctx = {
672 .parent = parent,
673 .dentry = dentry,
674 .workdir = ovl_workdir(dentry),
675 };
676
677 if (WARN_ON(!ctx.workdir))
678 return -EROFS;
679
680 ovl_path_lower(dentry, &ctx.lowerpath);
681 err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
682 STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
683 if (err)
684 return err;
685
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300686 if (parent) {
687 ovl_path_upper(parent, &parentpath);
688 ctx.destdir = parentpath.dentry;
689 ctx.destname = dentry->d_name;
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200690
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300691 err = vfs_getattr(&parentpath, &ctx.pstat,
692 STATX_ATIME | STATX_MTIME,
693 AT_STATX_SYNC_AS_STAT);
694 if (err)
695 return err;
696 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200697
698 /* maybe truncate regular file. this has no effect on dirs */
699 if (flags & O_TRUNC)
700 ctx.stat.size = 0;
701
702 if (S_ISLNK(ctx.stat.mode)) {
703 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
704 if (IS_ERR(ctx.link))
705 return PTR_ERR(ctx.link);
706 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200707
Miklos Szeredifd210b72017-07-04 22:03:18 +0200708 err = ovl_copy_up_start(dentry);
709 /* err < 0: interrupted, err > 0: raced with another copy-up */
710 if (unlikely(err)) {
711 if (err > 0)
712 err = 0;
713 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300714 if (!ovl_dentry_upper(dentry))
715 err = ovl_do_copy_up(&ctx);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300716 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300717 err = ovl_link_up(&ctx);
Miklos Szeredifd210b72017-07-04 22:03:18 +0200718 ovl_copy_up_end(dentry);
719 }
Miklos Szeredi7764235b2016-10-04 14:40:45 +0200720 do_delayed_call(&done);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200721
722 return err;
723}
724
Amir Goldstein9aba6522016-11-12 21:36:03 +0200725int ovl_copy_up_flags(struct dentry *dentry, int flags)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200726{
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400727 int err = 0;
728 const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300729 bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
730
731 /*
732 * With NFS export, copy up can get called for a disconnected non-dir.
733 * In this case, we will copy up lower inode to index dir without
734 * linking it to upper dir.
735 */
736 if (WARN_ON(disconnected && d_is_dir(dentry)))
737 return -EIO;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200738
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200739 while (!err) {
740 struct dentry *next;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300741 struct dentry *parent = NULL;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200742
Amir Goldstein59be0972017-06-20 15:25:46 +0300743 /*
744 * Check if copy-up has happened as well as for upper alias (in
745 * case of hard links) is there.
746 *
747 * Both checks are lockless:
748 * - false negatives: will recheck under oi->lock
749 * - false positives:
750 * + ovl_dentry_upper() uses memory barriers to ensure the
751 * upper dentry is up-to-date
752 * + ovl_dentry_has_upper_alias() relies on locking of
753 * upper parent i_rwsem to prevent reordering copy-up
754 * with rename.
755 */
756 if (ovl_dentry_upper(dentry) &&
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300757 (ovl_dentry_has_upper_alias(dentry) || disconnected))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200758 break;
759
760 next = dget(dentry);
761 /* find the topmost dentry not yet copied up */
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300762 for (; !disconnected;) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200763 parent = dget_parent(next);
764
Amir Goldstein59be0972017-06-20 15:25:46 +0300765 if (ovl_dentry_upper(parent))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200766 break;
767
768 dput(next);
769 next = parent;
770 }
771
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200772 err = ovl_copy_up_one(parent, next, flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200773
774 dput(parent);
775 dput(next);
776 }
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400777 revert_creds(old_cred);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200778
779 return err;
780}
Amir Goldstein9aba6522016-11-12 21:36:03 +0200781
782int ovl_copy_up(struct dentry *dentry)
783{
784 return ovl_copy_up_flags(dentry, 0);
785}