blob: 6220642fe113b69e6303877898bf53b04330dd90 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Miklos Szeredie9be9d52014-10-24 00:14:38 +02002/*
3 *
4 * Copyright (C) 2011 Novell Inc.
Miklos Szeredie9be9d52014-10-24 00:14:38 +02005 */
6
David Howellsfb5bb2c32015-07-07 15:04:44 +01007#include <linux/module.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +02008#include <linux/fs.h>
9#include <linux/slab.h>
10#include <linux/file.h>
11#include <linux/splice.h>
12#include <linux/xattr.h>
13#include <linux/security.h>
14#include <linux/uaccess.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010015#include <linux/sched/signal.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010016#include <linux/cred.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020017#include <linux/namei.h>
David Howellsfb5bb2c32015-07-07 15:04:44 +010018#include <linux/fdtable.h>
19#include <linux/ratelimit.h>
Amir Goldstein3a1e8192017-03-30 15:22:16 +030020#include <linux/exportfs.h>
Miklos Szeredie9be9d52014-10-24 00:14:38 +020021#include "overlayfs.h"
22
23#define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
24
Miklos Szeredi670c2322018-07-18 15:44:44 +020025static int ovl_ccup_set(const char *buf, const struct kernel_param *param)
David Howellsfb5bb2c32015-07-07 15:04:44 +010026{
Miklos Szeredi670c2322018-07-18 15:44:44 +020027 pr_warn("overlayfs: \"check_copy_up\" module option is obsolete\n");
David Howellsfb5bb2c32015-07-07 15:04:44 +010028 return 0;
29}
30
Miklos Szeredi670c2322018-07-18 15:44:44 +020031static int ovl_ccup_get(char *buf, const struct kernel_param *param)
David Howellsfb5bb2c32015-07-07 15:04:44 +010032{
Miklos Szeredi670c2322018-07-18 15:44:44 +020033 return sprintf(buf, "N\n");
David Howellsfb5bb2c32015-07-07 15:04:44 +010034}
35
Miklos Szeredi670c2322018-07-18 15:44:44 +020036module_param_call(check_copy_up, ovl_ccup_set, ovl_ccup_get, NULL, 0644);
Nicolas Schier253e7482019-06-17 09:39:00 +020037MODULE_PARM_DESC(check_copy_up, "Obsolete; does nothing");
Miklos Szeredi670c2322018-07-18 15:44:44 +020038
Miklos Szeredie9be9d52014-10-24 00:14:38 +020039int ovl_copy_xattr(struct dentry *old, struct dentry *new)
40{
Vito Caputoe4ad29f2015-10-24 07:19:46 -050041 ssize_t list_size, size, value_size = 0;
42 char *buf, *name, *value = NULL;
43 int uninitialized_var(error);
Miklos Szeredi8b326c62016-09-16 14:12:11 +020044 size_t slen;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020045
Andreas Gruenbacher5d6c3192016-09-29 17:48:42 +020046 if (!(old->d_inode->i_opflags & IOP_XATTR) ||
47 !(new->d_inode->i_opflags & IOP_XATTR))
Miklos Szeredie9be9d52014-10-24 00:14:38 +020048 return 0;
49
50 list_size = vfs_listxattr(old, NULL, 0);
51 if (list_size <= 0) {
52 if (list_size == -EOPNOTSUPP)
53 return 0;
54 return list_size;
55 }
56
57 buf = kzalloc(list_size, GFP_KERNEL);
58 if (!buf)
59 return -ENOMEM;
60
Miklos Szeredie9be9d52014-10-24 00:14:38 +020061 list_size = vfs_listxattr(old, buf, list_size);
62 if (list_size <= 0) {
63 error = list_size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050064 goto out;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020065 }
66
Miklos Szeredi8b326c62016-09-16 14:12:11 +020067 for (name = buf; list_size; name += slen) {
68 slen = strnlen(name, list_size) + 1;
69
70 /* underlying fs providing us with an broken xattr list? */
71 if (WARN_ON(slen > list_size)) {
72 error = -EIO;
73 break;
74 }
75 list_size -= slen;
76
Miklos Szeredi09562542016-08-08 15:08:49 +020077 if (ovl_is_private_xattr(name))
78 continue;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050079retry:
80 size = vfs_getxattr(old, name, value, value_size);
81 if (size == -ERANGE)
82 size = vfs_getxattr(old, name, NULL, 0);
83
Miklos Szeredi97daf8b2015-11-10 17:08:41 +010084 if (size < 0) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +020085 error = size;
Vito Caputoe4ad29f2015-10-24 07:19:46 -050086 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +020087 }
Vito Caputoe4ad29f2015-10-24 07:19:46 -050088
89 if (size > value_size) {
90 void *new;
91
92 new = krealloc(value, size, GFP_KERNEL);
93 if (!new) {
94 error = -ENOMEM;
95 break;
96 }
97 value = new;
98 value_size = size;
99 goto retry;
100 }
101
Vivek Goyal121ab822016-07-13 10:44:49 -0400102 error = security_inode_copy_up_xattr(name);
103 if (error < 0 && error != -EOPNOTSUPP)
104 break;
105 if (error == 1) {
106 error = 0;
107 continue; /* Discard */
108 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200109 error = vfs_setxattr(new, name, value, size, 0);
110 if (error)
Vito Caputoe4ad29f2015-10-24 07:19:46 -0500111 break;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200112 }
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200113 kfree(value);
114out:
115 kfree(buf);
116 return error;
117}
118
119static int ovl_copy_up_data(struct path *old, struct path *new, loff_t len)
120{
121 struct file *old_file;
122 struct file *new_file;
123 loff_t old_pos = 0;
124 loff_t new_pos = 0;
Darrick J. Wong42ec3d42018-10-30 10:41:49 +1100125 loff_t cloned;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200126 int error = 0;
127
128 if (len == 0)
129 return 0;
130
David Howells04803342015-09-18 11:45:12 +0100131 old_file = ovl_path_open(old, O_LARGEFILE | O_RDONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200132 if (IS_ERR(old_file))
133 return PTR_ERR(old_file);
134
David Howells04803342015-09-18 11:45:12 +0100135 new_file = ovl_path_open(new, O_LARGEFILE | O_WRONLY);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200136 if (IS_ERR(new_file)) {
137 error = PTR_ERR(new_file);
138 goto out_fput;
139 }
140
Amir Goldstein2ea98462016-09-23 11:38:12 +0300141 /* Try to use clone_file_range to clone up within the same fs */
Darrick J. Wong452ce652018-10-30 10:41:56 +1100142 cloned = do_clone_file_range(old_file, 0, new_file, 0, len, 0);
Darrick J. Wong42ec3d42018-10-30 10:41:49 +1100143 if (cloned == len)
Amir Goldstein2ea98462016-09-23 11:38:12 +0300144 goto out;
145 /* Couldn't clone, so now we try to copy the data */
Amir Goldstein2ea98462016-09-23 11:38:12 +0300146
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200147 /* FIXME: copy up sparse files efficiently */
148 while (len) {
149 size_t this_len = OVL_COPY_UP_CHUNK_SIZE;
150 long bytes;
151
152 if (len < this_len)
153 this_len = len;
154
155 if (signal_pending_state(TASK_KILLABLE, current)) {
156 error = -EINTR;
157 break;
158 }
159
160 bytes = do_splice_direct(old_file, &old_pos,
161 new_file, &new_pos,
162 this_len, SPLICE_F_MOVE);
163 if (bytes <= 0) {
164 error = bytes;
165 break;
166 }
167 WARN_ON(old_pos != new_pos);
168
169 len -= bytes;
170 }
Amir Goldstein2ea98462016-09-23 11:38:12 +0300171out:
Miklos Szeredi641089c2016-10-31 14:42:14 +0100172 if (!error)
173 error = vfs_fsync(new_file, 0);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200174 fput(new_file);
175out_fput:
176 fput(old_file);
177 return error;
178}
179
Vivek Goyal0c288872018-05-11 11:49:28 -0400180static int ovl_set_size(struct dentry *upperdentry, struct kstat *stat)
181{
182 struct iattr attr = {
183 .ia_valid = ATTR_SIZE,
184 .ia_size = stat->size,
185 };
186
187 return notify_change(upperdentry, &attr, NULL);
188}
189
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200190static int ovl_set_timestamps(struct dentry *upperdentry, struct kstat *stat)
191{
192 struct iattr attr = {
193 .ia_valid =
194 ATTR_ATIME | ATTR_MTIME | ATTR_ATIME_SET | ATTR_MTIME_SET,
195 .ia_atime = stat->atime,
196 .ia_mtime = stat->mtime,
197 };
198
199 return notify_change(upperdentry, &attr, NULL);
200}
201
202int ovl_set_attr(struct dentry *upperdentry, struct kstat *stat)
203{
204 int err = 0;
205
206 if (!S_ISLNK(stat->mode)) {
207 struct iattr attr = {
208 .ia_valid = ATTR_MODE,
209 .ia_mode = stat->mode,
210 };
211 err = notify_change(upperdentry, &attr, NULL);
212 }
213 if (!err) {
214 struct iattr attr = {
215 .ia_valid = ATTR_UID | ATTR_GID,
216 .ia_uid = stat->uid,
217 .ia_gid = stat->gid,
218 };
219 err = notify_change(upperdentry, &attr, NULL);
220 }
221 if (!err)
222 ovl_set_timestamps(upperdentry, stat);
223
224 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200225}
226
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200227struct ovl_fh *ovl_encode_real_fh(struct dentry *real, bool is_upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300228{
229 struct ovl_fh *fh;
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200230 int fh_type, dwords;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300231 int buflen = MAX_HANDLE_SZ;
Amir Goldstein05122442018-01-11 08:25:32 +0200232 uuid_t *uuid = &real->d_sb->s_uuid;
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200233 int err;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300234
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200235 /* Make sure the real fid stays 32bit aligned */
236 BUILD_BUG_ON(OVL_FH_FID_OFFSET % 4);
237 BUILD_BUG_ON(MAX_HANDLE_SZ + OVL_FH_FID_OFFSET > 255);
238
239 fh = kzalloc(buflen + OVL_FH_FID_OFFSET, GFP_KERNEL);
240 if (!fh)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300241 return ERR_PTR(-ENOMEM);
242
243 /*
244 * We encode a non-connectable file handle for non-dir, because we
245 * only need to find the lower inode number and we don't want to pay
246 * the price or reconnecting the dentry.
247 */
248 dwords = buflen >> 2;
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200249 fh_type = exportfs_encode_fh(real, (void *)fh->fb.fid, &dwords, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300250 buflen = (dwords << 2);
251
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200252 err = -EIO;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300253 if (WARN_ON(fh_type < 0) ||
254 WARN_ON(buflen > MAX_HANDLE_SZ) ||
255 WARN_ON(fh_type == FILEID_INVALID))
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200256 goto out_err;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300257
Amir Goldsteincbe7fba2019-11-15 13:33:03 +0200258 fh->fb.version = OVL_FH_VERSION;
259 fh->fb.magic = OVL_FH_MAGIC;
260 fh->fb.type = fh_type;
261 fh->fb.flags = OVL_FH_FLAG_CPU_ENDIAN;
Amir Goldstein54fb3472017-06-21 15:28:38 +0300262 /*
263 * When we will want to decode an overlay dentry from this handle
264 * and all layers are on the same fs, if we get a disconncted real
265 * dentry when we decode fid, the only way to tell if we should assign
266 * it to upperdentry or to lowerstack is by checking this flag.
267 */
268 if (is_upper)
Amir Goldsteincbe7fba2019-11-15 13:33:03 +0200269 fh->fb.flags |= OVL_FH_FLAG_PATH_UPPER;
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200270 fh->fb.len = sizeof(fh->fb) + buflen;
Amir Goldsteincbe7fba2019-11-15 13:33:03 +0200271 fh->fb.uuid = *uuid;
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300272
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300273 return fh;
Amir Goldsteinec7bbb532019-11-15 13:33:04 +0200274
275out_err:
276 kfree(fh);
277 return ERR_PTR(err);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300278}
279
Amir Goldstein9678e632018-01-03 19:34:45 +0200280int ovl_set_origin(struct dentry *dentry, struct dentry *lower,
281 struct dentry *upper)
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300282{
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300283 const struct ovl_fh *fh = NULL;
284 int err;
285
286 /*
287 * When lower layer doesn't support export operations store a 'null' fh,
288 * so we can use the overlay.origin xattr to distignuish between a copy
289 * up and a pure upper inode.
290 */
Amir Goldstein02bcd152017-06-21 15:28:36 +0300291 if (ovl_can_decode_fh(lower->d_sb)) {
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200292 fh = ovl_encode_real_fh(lower, false);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300293 if (IS_ERR(fh))
294 return PTR_ERR(fh);
295 }
296
Miklos Szeredi6266d462017-05-18 16:11:24 +0200297 /*
298 * Do not fail when upper doesn't support xattrs.
299 */
Amir Goldsteincbe7fba2019-11-15 13:33:03 +0200300 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_ORIGIN, fh->buf,
301 fh ? fh->fb.len : 0, 0);
Amir Goldstein3a1e8192017-03-30 15:22:16 +0300302 kfree(fh);
303
304 return err;
305}
306
Amir Goldstein016b7202018-01-11 14:01:08 +0200307/* Store file handle of @upper dir in @index dir entry */
308static int ovl_set_upper_fh(struct dentry *upper, struct dentry *index)
309{
310 const struct ovl_fh *fh;
311 int err;
312
Amir Goldstein5b2cccd2018-02-02 10:42:03 +0200313 fh = ovl_encode_real_fh(upper, true);
Amir Goldstein016b7202018-01-11 14:01:08 +0200314 if (IS_ERR(fh))
315 return PTR_ERR(fh);
316
Amir Goldsteincbe7fba2019-11-15 13:33:03 +0200317 err = ovl_do_setxattr(index, OVL_XATTR_UPPER, fh->buf, fh->fb.len, 0);
Amir Goldstein016b7202018-01-11 14:01:08 +0200318
319 kfree(fh);
320 return err;
321}
322
323/*
324 * Create and install index entry.
325 *
326 * Caller must hold i_mutex on indexdir.
327 */
328static int ovl_create_index(struct dentry *dentry, struct dentry *origin,
329 struct dentry *upper)
330{
331 struct dentry *indexdir = ovl_indexdir(dentry->d_sb);
332 struct inode *dir = d_inode(indexdir);
333 struct dentry *index = NULL;
334 struct dentry *temp = NULL;
335 struct qstr name = { };
336 int err;
337
338 /*
339 * For now this is only used for creating index entry for directories,
340 * because non-dir are copied up directly to index and then hardlinked
341 * to upper dir.
342 *
343 * TODO: implement create index for non-dir, so we can call it when
344 * encoding file handle for non-dir in case index does not exist.
345 */
346 if (WARN_ON(!d_is_dir(dentry)))
347 return -EIO;
348
349 /* Directory not expected to be indexed before copy up */
350 if (WARN_ON(ovl_test_flag(OVL_INDEX, d_inode(dentry))))
351 return -EIO;
352
353 err = ovl_get_index_name(origin, &name);
354 if (err)
355 return err;
356
Amir Goldstein137ec522018-05-16 17:51:25 +0300357 temp = ovl_create_temp(indexdir, OVL_CATTR(S_IFDIR | 0));
Miklos Szeredib148cba2018-05-31 11:06:11 +0200358 err = PTR_ERR(temp);
Amir Goldstein016b7202018-01-11 14:01:08 +0200359 if (IS_ERR(temp))
Miklos Szeredib148cba2018-05-31 11:06:11 +0200360 goto free_name;
Amir Goldstein016b7202018-01-11 14:01:08 +0200361
Amir Goldstein016b7202018-01-11 14:01:08 +0200362 err = ovl_set_upper_fh(upper, temp);
363 if (err)
Miklos Szeredib148cba2018-05-31 11:06:11 +0200364 goto out;
Amir Goldstein016b7202018-01-11 14:01:08 +0200365
366 index = lookup_one_len(name.name, indexdir, name.len);
367 if (IS_ERR(index)) {
368 err = PTR_ERR(index);
369 } else {
370 err = ovl_do_rename(dir, temp, dir, index, 0);
371 dput(index);
372 }
Amir Goldstein016b7202018-01-11 14:01:08 +0200373out:
Miklos Szeredib148cba2018-05-31 11:06:11 +0200374 if (err)
375 ovl_cleanup(dir, temp);
Amir Goldstein016b7202018-01-11 14:01:08 +0200376 dput(temp);
Miklos Szeredib148cba2018-05-31 11:06:11 +0200377free_name:
Amir Goldstein016b7202018-01-11 14:01:08 +0200378 kfree(name.name);
379 return err;
Amir Goldstein016b7202018-01-11 14:01:08 +0200380}
381
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200382struct ovl_copy_up_ctx {
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200383 struct dentry *parent;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200384 struct dentry *dentry;
385 struct path lowerpath;
386 struct kstat stat;
387 struct kstat pstat;
388 const char *link;
Amir Goldstein59be0972017-06-20 15:25:46 +0300389 struct dentry *destdir;
390 struct qstr destname;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200391 struct dentry *workdir;
Amir Goldstein59be0972017-06-20 15:25:46 +0300392 bool origin;
Amir Goldstein016b7202018-01-11 14:01:08 +0200393 bool indexed;
Vivek Goyal44d5bf12018-05-11 11:49:27 -0400394 bool metacopy;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200395};
396
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300397static int ovl_link_up(struct ovl_copy_up_ctx *c)
398{
399 int err;
400 struct dentry *upper;
401 struct dentry *upperdir = ovl_dentry_upper(c->parent);
402 struct inode *udir = d_inode(upperdir);
403
404 /* Mark parent "impure" because it may now contain non-pure upper */
405 err = ovl_set_impure(c->parent, upperdir);
406 if (err)
407 return err;
408
409 err = ovl_set_nlink_lower(c->dentry);
410 if (err)
411 return err;
412
413 inode_lock_nested(udir, I_MUTEX_PARENT);
414 upper = lookup_one_len(c->dentry->d_name.name, upperdir,
415 c->dentry->d_name.len);
416 err = PTR_ERR(upper);
417 if (!IS_ERR(upper)) {
Amir Goldstein6cf00762018-05-16 17:04:00 +0300418 err = ovl_do_link(ovl_dentry_upper(c->dentry), udir, upper);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300419 dput(upper);
420
421 if (!err) {
422 /* Restore timestamps on parent (best effort) */
423 ovl_set_timestamps(upperdir, &c->pstat);
424 ovl_dentry_set_upper_alias(c->dentry);
425 }
426 }
427 inode_unlock(udir);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300428 if (err)
429 return err;
430
431 err = ovl_set_nlink_upper(c->dentry);
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300432
433 return err;
434}
435
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200436static int ovl_copy_up_inode(struct ovl_copy_up_ctx *c, struct dentry *temp)
Amir Goldstein02209d12017-05-19 15:16:21 +0300437{
438 int err;
439
Vivek Goyal5f328792019-01-11 19:37:00 +0100440 /*
441 * Copy up data first and then xattrs. Writing data after
442 * xattrs will remove security.capability xattr automatically.
443 */
444 if (S_ISREG(c->stat.mode) && !c->metacopy) {
445 struct path upperpath, datapath;
446
447 ovl_path_upper(c->dentry, &upperpath);
448 if (WARN_ON(upperpath.dentry != NULL))
449 return -EIO;
450 upperpath.dentry = temp;
451
452 ovl_path_lowerdata(c->dentry, &datapath);
453 err = ovl_copy_up_data(&datapath, &upperpath, c->stat.size);
454 if (err)
455 return err;
456 }
457
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200458 err = ovl_copy_xattr(c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300459 if (err)
460 return err;
461
Amir Goldstein02209d12017-05-19 15:16:21 +0300462 /*
463 * Store identifier of lower inode in upper inode xattr to
464 * allow lookup of the copy up origin inode.
465 *
466 * Don't set origin when we are breaking the association with a lower
467 * hard link.
468 */
Amir Goldstein59be0972017-06-20 15:25:46 +0300469 if (c->origin) {
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200470 err = ovl_set_origin(c->dentry, c->lowerpath.dentry, temp);
Amir Goldstein02209d12017-05-19 15:16:21 +0300471 if (err)
472 return err;
473 }
474
Vivek Goyal0c288872018-05-11 11:49:28 -0400475 if (c->metacopy) {
476 err = ovl_check_setxattr(c->dentry, temp, OVL_XATTR_METACOPY,
477 NULL, 0, -EOPNOTSUPP);
478 if (err)
479 return err;
480 }
481
Vivek Goyalbd64e572018-05-11 11:49:27 -0400482 inode_lock(temp->d_inode);
Vivek Goyal0c288872018-05-11 11:49:28 -0400483 if (c->metacopy)
484 err = ovl_set_size(temp, &c->stat);
485 if (!err)
486 err = ovl_set_attr(temp, &c->stat);
Vivek Goyalbd64e572018-05-11 11:49:27 -0400487 inode_unlock(temp->d_inode);
488
489 return err;
Amir Goldstein02209d12017-05-19 15:16:21 +0300490}
491
Miklos Szeredi6b522432018-10-26 23:34:39 +0200492struct ovl_cu_creds {
493 const struct cred *old;
494 struct cred *new;
495};
496
497static int ovl_prep_cu_creds(struct dentry *dentry, struct ovl_cu_creds *cc)
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200498{
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300499 int err;
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300500
Miklos Szeredi6b522432018-10-26 23:34:39 +0200501 cc->old = cc->new = NULL;
502 err = security_inode_copy_up(dentry, &cc->new);
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300503 if (err < 0)
Miklos Szeredi6b522432018-10-26 23:34:39 +0200504 return err;
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300505
Miklos Szeredi6b522432018-10-26 23:34:39 +0200506 if (cc->new)
507 cc->old = override_creds(cc->new);
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300508
Miklos Szeredi6b522432018-10-26 23:34:39 +0200509 return 0;
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300510}
511
Miklos Szeredi6b522432018-10-26 23:34:39 +0200512static void ovl_revert_cu_creds(struct ovl_cu_creds *cc)
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300513{
Miklos Szeredi6b522432018-10-26 23:34:39 +0200514 if (cc->new) {
515 revert_creds(cc->old);
516 put_cred(cc->new);
517 }
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300518}
519
520/*
521 * Copyup using workdir to prepare temp file. Used when copying up directories,
522 * special files or when upper fs doesn't support O_TMPFILE.
523 */
524static int ovl_copy_up_workdir(struct ovl_copy_up_ctx *c)
525{
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300526 struct inode *inode;
Miklos Szeredi6b522432018-10-26 23:34:39 +0200527 struct inode *udir = d_inode(c->destdir), *wdir = d_inode(c->workdir);
528 struct dentry *temp, *upper;
529 struct ovl_cu_creds cc;
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200530 int err;
Miklos Szeredi6b522432018-10-26 23:34:39 +0200531 struct ovl_cattr cattr = {
532 /* Can't properly set mode on creation because of the umask */
533 .mode = c->stat.mode & S_IFMT,
534 .rdev = c->stat.rdev,
535 .link = c->link
536 };
Miklos Szeredi7d90b852017-07-04 22:03:18 +0200537
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300538 err = ovl_lock_rename_workdir(c->workdir, c->destdir);
539 if (err)
540 return err;
541
Miklos Szeredi6b522432018-10-26 23:34:39 +0200542 err = ovl_prep_cu_creds(c->dentry, &cc);
543 if (err)
544 goto unlock;
545
546 temp = ovl_create_temp(c->workdir, &cattr);
547 ovl_revert_cu_creds(&cc);
548
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300549 err = PTR_ERR(temp);
550 if (IS_ERR(temp))
551 goto unlock;
552
553 err = ovl_copy_up_inode(c, temp);
554 if (err)
555 goto cleanup;
556
557 if (S_ISDIR(c->stat.mode) && c->indexed) {
558 err = ovl_create_index(c->dentry, c->lowerpath.dentry, temp);
559 if (err)
560 goto cleanup;
561 }
562
Miklos Szeredi6b522432018-10-26 23:34:39 +0200563 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
564 err = PTR_ERR(upper);
565 if (IS_ERR(upper))
566 goto cleanup;
567
568 err = ovl_do_rename(wdir, temp, udir, upper, 0);
569 dput(upper);
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300570 if (err)
571 goto cleanup;
572
573 if (!c->metacopy)
574 ovl_set_upperdata(d_inode(c->dentry));
575 inode = d_inode(c->dentry);
Miklos Szeredi6b522432018-10-26 23:34:39 +0200576 ovl_inode_update(inode, temp);
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300577 if (S_ISDIR(inode->i_mode))
578 ovl_set_flag(OVL_WHITEOUTS, inode);
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300579unlock:
580 unlock_rename(c->workdir, c->destdir);
581
582 return err;
583
584cleanup:
Miklos Szeredi6b522432018-10-26 23:34:39 +0200585 ovl_cleanup(wdir, temp);
586 dput(temp);
587 goto unlock;
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300588}
589
590/* Copyup using O_TMPFILE which does not require cross dir locking */
591static int ovl_copy_up_tmpfile(struct ovl_copy_up_ctx *c)
592{
Miklos Szeredi6b522432018-10-26 23:34:39 +0200593 struct inode *udir = d_inode(c->destdir);
594 struct dentry *temp, *upper;
595 struct ovl_cu_creds cc;
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300596 int err;
597
Miklos Szeredi6b522432018-10-26 23:34:39 +0200598 err = ovl_prep_cu_creds(c->dentry, &cc);
599 if (err)
600 return err;
601
602 temp = ovl_do_tmpfile(c->workdir, c->stat.mode);
603 ovl_revert_cu_creds(&cc);
604
Miklos Szeredib148cba2018-05-31 11:06:11 +0200605 if (IS_ERR(temp))
606 return PTR_ERR(temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200607
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200608 err = ovl_copy_up_inode(c, temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200609 if (err)
Miklos Szeredi6b522432018-10-26 23:34:39 +0200610 goto out_dput;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200611
Miklos Szeredi6b522432018-10-26 23:34:39 +0200612 inode_lock_nested(udir, I_MUTEX_PARENT);
613
614 upper = lookup_one_len(c->destname.name, c->destdir, c->destname.len);
615 err = PTR_ERR(upper);
616 if (!IS_ERR(upper)) {
617 err = ovl_do_link(temp, udir, upper);
618 dput(upper);
619 }
620 inode_unlock(udir);
621
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200622 if (err)
Miklos Szeredi6b522432018-10-26 23:34:39 +0200623 goto out_dput;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200624
Vivek Goyal0c288872018-05-11 11:49:28 -0400625 if (!c->metacopy)
626 ovl_set_upperdata(d_inode(c->dentry));
Miklos Szeredi6b522432018-10-26 23:34:39 +0200627 ovl_inode_update(d_inode(c->dentry), temp);
Amir Goldsteinb79e05a2017-06-25 16:37:17 +0300628
Miklos Szeredi6b522432018-10-26 23:34:39 +0200629 return 0;
630
631out_dput:
Miklos Szeredie85f82f2017-06-28 13:41:22 +0200632 dput(temp);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200633 return err;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200634}
635
636/*
637 * Copy up a single dentry
638 *
Miklos Szeredia6c60652016-12-16 11:02:56 +0100639 * All renames start with copy up of source if necessary. The actual
640 * rename will only proceed once the copy up was successful. Copy up uses
641 * upper parent i_mutex for exclusion. Since rename can change d_parent it
642 * is possible that the copy up will lock the old parent. At that point
643 * the file will have already been copied up anyway.
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200644 */
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200645static int ovl_do_copy_up(struct ovl_copy_up_ctx *c)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200646{
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200647 int err;
Miklos Szeredi23f0ab12017-07-04 22:03:18 +0200648 struct ovl_fs *ofs = c->dentry->d_sb->s_fs_info;
Amir Goldstein016b7202018-01-11 14:01:08 +0200649 bool to_index = false;
Amir Goldstein59be0972017-06-20 15:25:46 +0300650
Amir Goldstein016b7202018-01-11 14:01:08 +0200651 /*
652 * Indexed non-dir is copied up directly to the index entry and then
653 * hardlinked to upper dir. Indexed dir is copied up to indexdir,
654 * then index entry is created and then copied up dir installed.
655 * Copying dir up to indexdir instead of workdir simplifies locking.
656 */
657 if (ovl_need_index(c->dentry)) {
658 c->indexed = true;
659 if (S_ISDIR(c->stat.mode))
660 c->workdir = ovl_indexdir(c->dentry->d_sb);
661 else
662 to_index = true;
663 }
664
665 if (S_ISDIR(c->stat.mode) || c->stat.nlink == 1 || to_index)
Amir Goldstein59be0972017-06-20 15:25:46 +0300666 c->origin = true;
667
Amir Goldstein016b7202018-01-11 14:01:08 +0200668 if (to_index) {
Amir Goldstein59be0972017-06-20 15:25:46 +0300669 c->destdir = ovl_indexdir(c->dentry->d_sb);
670 err = ovl_get_index_name(c->lowerpath.dentry, &c->destname);
671 if (err)
672 return err;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300673 } else if (WARN_ON(!c->parent)) {
674 /* Disconnected dentry must be copied up to index dir */
675 return -EIO;
Amir Goldstein59be0972017-06-20 15:25:46 +0300676 } else {
677 /*
678 * Mark parent "impure" because it may now contain non-pure
679 * upper
680 */
681 err = ovl_set_impure(c->parent, c->destdir);
682 if (err)
683 return err;
684 }
Amir Goldsteinf3a15682017-05-24 15:29:33 +0300685
Amir Goldstein01ad3eb2017-01-17 06:34:57 +0200686 /* Should we copyup with O_TMPFILE or with workdir? */
Amir Goldsteinb10cdcd2018-10-08 07:25:23 +0300687 if (S_ISREG(c->stat.mode) && ofs->tmpfile)
688 err = ovl_copy_up_tmpfile(c);
689 else
690 err = ovl_copy_up_workdir(c);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300691 if (err)
692 goto out;
693
694 if (c->indexed)
Amir Goldstein016b7202018-01-11 14:01:08 +0200695 ovl_set_flag(OVL_INDEX, d_inode(c->dentry));
696
697 if (to_index) {
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300698 /* Initialize nlink for copy up of disconnected dentry */
699 err = ovl_set_nlink_upper(c->dentry);
700 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300701 struct inode *udir = d_inode(c->destdir);
702
703 /* Restore timestamps on parent (best effort) */
704 inode_lock(udir);
705 ovl_set_timestamps(c->destdir, &c->pstat);
706 inode_unlock(udir);
707
708 ovl_dentry_set_upper_alias(c->dentry);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200709 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200710
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300711out:
712 if (to_index)
713 kfree(c->destname.name);
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200714 return err;
715}
716
Vivek Goyal44d5bf12018-05-11 11:49:27 -0400717static bool ovl_need_meta_copy_up(struct dentry *dentry, umode_t mode,
718 int flags)
719{
720 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
721
Vivek Goyal44d5bf12018-05-11 11:49:27 -0400722 if (!ofs->config.metacopy)
723 return false;
724
725 if (!S_ISREG(mode))
726 return false;
727
728 if (flags && ((OPEN_FMODE(flags) & FMODE_WRITE) || (flags & O_TRUNC)))
729 return false;
730
731 return true;
732}
733
Vivek Goyal0c288872018-05-11 11:49:28 -0400734/* Copy up data of an inode which was copied up metadata only in the past. */
735static int ovl_copy_up_meta_inode_data(struct ovl_copy_up_ctx *c)
736{
Vivek Goyal4f93b422018-05-11 11:49:30 -0400737 struct path upperpath, datapath;
Vivek Goyal0c288872018-05-11 11:49:28 -0400738 int err;
Vivek Goyal993a0b22019-01-30 14:01:57 -0500739 char *capability = NULL;
740 ssize_t uninitialized_var(cap_size);
Vivek Goyal0c288872018-05-11 11:49:28 -0400741
742 ovl_path_upper(c->dentry, &upperpath);
743 if (WARN_ON(upperpath.dentry == NULL))
744 return -EIO;
745
Vivek Goyal4f93b422018-05-11 11:49:30 -0400746 ovl_path_lowerdata(c->dentry, &datapath);
747 if (WARN_ON(datapath.dentry == NULL))
748 return -EIO;
749
Vivek Goyal993a0b22019-01-30 14:01:57 -0500750 if (c->stat.size) {
751 err = cap_size = ovl_getxattr(upperpath.dentry, XATTR_NAME_CAPS,
752 &capability, 0);
753 if (err < 0 && err != -ENODATA)
754 goto out;
755 }
756
Vivek Goyal4f93b422018-05-11 11:49:30 -0400757 err = ovl_copy_up_data(&datapath, &upperpath, c->stat.size);
Vivek Goyal0c288872018-05-11 11:49:28 -0400758 if (err)
Vivek Goyal993a0b22019-01-30 14:01:57 -0500759 goto out_free;
760
761 /*
762 * Writing to upper file will clear security.capability xattr. We
763 * don't want that to happen for normal copy-up operation.
764 */
765 if (capability) {
766 err = ovl_do_setxattr(upperpath.dentry, XATTR_NAME_CAPS,
767 capability, cap_size, 0);
768 if (err)
769 goto out_free;
770 }
771
Vivek Goyal0c288872018-05-11 11:49:28 -0400772
773 err = vfs_removexattr(upperpath.dentry, OVL_XATTR_METACOPY);
774 if (err)
Vivek Goyal993a0b22019-01-30 14:01:57 -0500775 goto out_free;
Vivek Goyal0c288872018-05-11 11:49:28 -0400776
777 ovl_set_upperdata(d_inode(c->dentry));
Vivek Goyal993a0b22019-01-30 14:01:57 -0500778out_free:
779 kfree(capability);
780out:
Vivek Goyal0c288872018-05-11 11:49:28 -0400781 return err;
782}
783
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200784static int ovl_copy_up_one(struct dentry *parent, struct dentry *dentry,
785 int flags)
786{
787 int err;
788 DEFINE_DELAYED_CALL(done);
789 struct path parentpath;
790 struct ovl_copy_up_ctx ctx = {
791 .parent = parent,
792 .dentry = dentry,
793 .workdir = ovl_workdir(dentry),
794 };
795
796 if (WARN_ON(!ctx.workdir))
797 return -EROFS;
798
799 ovl_path_lower(dentry, &ctx.lowerpath);
800 err = vfs_getattr(&ctx.lowerpath, &ctx.stat,
801 STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
802 if (err)
803 return err;
804
Vivek Goyal44d5bf12018-05-11 11:49:27 -0400805 ctx.metacopy = ovl_need_meta_copy_up(dentry, ctx.stat.mode, flags);
806
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300807 if (parent) {
808 ovl_path_upper(parent, &parentpath);
809 ctx.destdir = parentpath.dentry;
810 ctx.destname = dentry->d_name;
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200811
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300812 err = vfs_getattr(&parentpath, &ctx.pstat,
813 STATX_ATIME | STATX_MTIME,
814 AT_STATX_SYNC_AS_STAT);
815 if (err)
816 return err;
817 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200818
819 /* maybe truncate regular file. this has no effect on dirs */
820 if (flags & O_TRUNC)
821 ctx.stat.size = 0;
822
823 if (S_ISLNK(ctx.stat.mode)) {
824 ctx.link = vfs_get_link(ctx.lowerpath.dentry, &done);
825 if (IS_ERR(ctx.link))
826 return PTR_ERR(ctx.link);
827 }
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200828
Vivek Goyal0c288872018-05-11 11:49:28 -0400829 err = ovl_copy_up_start(dentry, flags);
Miklos Szeredifd210b72017-07-04 22:03:18 +0200830 /* err < 0: interrupted, err > 0: raced with another copy-up */
831 if (unlikely(err)) {
832 if (err > 0)
833 err = 0;
834 } else {
Amir Goldstein59be0972017-06-20 15:25:46 +0300835 if (!ovl_dentry_upper(dentry))
836 err = ovl_do_copy_up(&ctx);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300837 if (!err && parent && !ovl_dentry_has_upper_alias(dentry))
Amir Goldsteinf4439de2017-07-04 22:04:06 +0300838 err = ovl_link_up(&ctx);
Vivek Goyal0c288872018-05-11 11:49:28 -0400839 if (!err && ovl_dentry_needs_data_copy_up_locked(dentry, flags))
840 err = ovl_copy_up_meta_inode_data(&ctx);
Miklos Szeredifd210b72017-07-04 22:03:18 +0200841 ovl_copy_up_end(dentry);
842 }
Miklos Szeredi7764235b2016-10-04 14:40:45 +0200843 do_delayed_call(&done);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200844
845 return err;
846}
847
Amir Goldstein9aba6522016-11-12 21:36:03 +0200848int ovl_copy_up_flags(struct dentry *dentry, int flags)
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200849{
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400850 int err = 0;
851 const struct cred *old_cred = ovl_override_creds(dentry->d_sb);
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300852 bool disconnected = (dentry->d_flags & DCACHE_DISCONNECTED);
853
854 /*
855 * With NFS export, copy up can get called for a disconnected non-dir.
856 * In this case, we will copy up lower inode to index dir without
857 * linking it to upper dir.
858 */
859 if (WARN_ON(disconnected && d_is_dir(dentry)))
860 return -EIO;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200861
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200862 while (!err) {
863 struct dentry *next;
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300864 struct dentry *parent = NULL;
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200865
Vivek Goyal0c288872018-05-11 11:49:28 -0400866 if (ovl_already_copied_up(dentry, flags))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200867 break;
868
869 next = dget(dentry);
870 /* find the topmost dentry not yet copied up */
Amir Goldsteinaa3ff3c2017-10-15 18:00:20 +0300871 for (; !disconnected;) {
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200872 parent = dget_parent(next);
873
Amir Goldstein59be0972017-06-20 15:25:46 +0300874 if (ovl_dentry_upper(parent))
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200875 break;
876
877 dput(next);
878 next = parent;
879 }
880
Miklos Szeredia6fb2352017-07-04 22:03:18 +0200881 err = ovl_copy_up_one(parent, next, flags);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200882
883 dput(parent);
884 dput(next);
885 }
Vivek Goyal8eac98b2016-09-06 13:40:32 -0400886 revert_creds(old_cred);
Miklos Szeredie9be9d52014-10-24 00:14:38 +0200887
888 return err;
889}
Amir Goldstein9aba6522016-11-12 21:36:03 +0200890
Vivek Goyald6eac032018-05-11 11:49:27 -0400891static bool ovl_open_need_copy_up(struct dentry *dentry, int flags)
892{
893 /* Copy up of disconnected dentry does not set upper alias */
Vivek Goyal0c288872018-05-11 11:49:28 -0400894 if (ovl_already_copied_up(dentry, flags))
Vivek Goyald6eac032018-05-11 11:49:27 -0400895 return false;
896
897 if (special_file(d_inode(dentry)->i_mode))
898 return false;
899
Vivek Goyal0c288872018-05-11 11:49:28 -0400900 if (!ovl_open_flags_need_copy_up(flags))
Vivek Goyald6eac032018-05-11 11:49:27 -0400901 return false;
902
903 return true;
904}
905
Amir Goldstein34280302019-01-22 07:01:39 +0200906int ovl_maybe_copy_up(struct dentry *dentry, int flags)
Vivek Goyald6eac032018-05-11 11:49:27 -0400907{
908 int err = 0;
909
Amir Goldstein34280302019-01-22 07:01:39 +0200910 if (ovl_open_need_copy_up(dentry, flags)) {
Vivek Goyald6eac032018-05-11 11:49:27 -0400911 err = ovl_want_write(dentry);
912 if (!err) {
Amir Goldstein34280302019-01-22 07:01:39 +0200913 err = ovl_copy_up_flags(dentry, flags);
Vivek Goyald6eac032018-05-11 11:49:27 -0400914 ovl_drop_write(dentry);
915 }
916 }
917
918 return err;
919}
920
Vivek Goyald1e6f6a2018-05-11 11:49:33 -0400921int ovl_copy_up_with_data(struct dentry *dentry)
922{
923 return ovl_copy_up_flags(dentry, O_WRONLY);
924}
925
Amir Goldstein9aba6522016-11-12 21:36:03 +0200926int ovl_copy_up(struct dentry *dentry)
927{
928 return ovl_copy_up_flags(dentry, 0);
929}