vfs: remap helper should update destination inode metadata
[linux-block.git] / fs / overlayfs / file.c
CommitLineData
d1d04ef8
MS
1/*
2 * Copyright (C) 2017 Red Hat, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2 as published by
6 * the Free Software Foundation.
7 */
8
9#include <linux/cred.h>
10#include <linux/file.h>
dab5ca8f 11#include <linux/mount.h>
d1d04ef8 12#include <linux/xattr.h>
16914e6f 13#include <linux/uio.h>
d1d04ef8
MS
14#include "overlayfs.h"
15
8c444d2a
VG
16static char ovl_whatisit(struct inode *inode, struct inode *realinode)
17{
18 if (realinode != ovl_inode_upper(inode))
19 return 'l';
20 if (ovl_has_upperdata(inode))
21 return 'u';
22 else
23 return 'm';
24}
25
26static struct file *ovl_open_realfile(const struct file *file,
27 struct inode *realinode)
d1d04ef8
MS
28{
29 struct inode *inode = file_inode(file);
d1d04ef8
MS
30 struct file *realfile;
31 const struct cred *old_cred;
32
33 old_cred = ovl_override_creds(inode->i_sb);
34 realfile = open_with_fake_path(&file->f_path, file->f_flags | O_NOATIME,
35 realinode, current_cred());
36 revert_creds(old_cred);
37
38 pr_debug("open(%p[%pD2/%c], 0%o) -> (%p, 0%o)\n",
8c444d2a 39 file, file, ovl_whatisit(inode, realinode), file->f_flags,
d1d04ef8
MS
40 realfile, IS_ERR(realfile) ? 0 : realfile->f_flags);
41
42 return realfile;
43}
44
2ef66b8a
MS
45#define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
46
47static int ovl_change_flags(struct file *file, unsigned int flags)
48{
49 struct inode *inode = file_inode(file);
50 int err;
51
52 /* No atime modificaton on underlying */
53 flags |= O_NOATIME;
54
55 /* If some flag changed that cannot be changed then something's amiss */
56 if (WARN_ON((file->f_flags ^ flags) & ~OVL_SETFL_MASK))
57 return -EIO;
58
59 flags &= OVL_SETFL_MASK;
60
61 if (((flags ^ file->f_flags) & O_APPEND) && IS_APPEND(inode))
62 return -EPERM;
63
64 if (flags & O_DIRECT) {
65 if (!file->f_mapping->a_ops ||
66 !file->f_mapping->a_ops->direct_IO)
67 return -EINVAL;
68 }
69
70 if (file->f_op->check_flags) {
71 err = file->f_op->check_flags(flags);
72 if (err)
73 return err;
74 }
75
76 spin_lock(&file->f_lock);
77 file->f_flags = (file->f_flags & ~OVL_SETFL_MASK) | flags;
78 spin_unlock(&file->f_lock);
79
80 return 0;
81}
82
8c444d2a
VG
83static int ovl_real_fdget_meta(const struct file *file, struct fd *real,
84 bool allow_meta)
2ef66b8a
MS
85{
86 struct inode *inode = file_inode(file);
8c444d2a 87 struct inode *realinode;
2ef66b8a
MS
88
89 real->flags = 0;
90 real->file = file->private_data;
91
8c444d2a
VG
92 if (allow_meta)
93 realinode = ovl_inode_real(inode);
94 else
95 realinode = ovl_inode_realdata(inode);
96
2ef66b8a 97 /* Has it been copied up since we'd opened it? */
8c444d2a 98 if (unlikely(file_inode(real->file) != realinode)) {
2ef66b8a 99 real->flags = FDPUT_FPUT;
8c444d2a 100 real->file = ovl_open_realfile(file, realinode);
2ef66b8a
MS
101
102 return PTR_ERR_OR_ZERO(real->file);
103 }
104
105 /* Did the flags change since open? */
106 if (unlikely((file->f_flags ^ real->file->f_flags) & ~O_NOATIME))
107 return ovl_change_flags(real->file, file->f_flags);
108
109 return 0;
110}
111
8c444d2a
VG
112static int ovl_real_fdget(const struct file *file, struct fd *real)
113{
114 return ovl_real_fdget_meta(file, real, false);
115}
116
d1d04ef8
MS
117static int ovl_open(struct inode *inode, struct file *file)
118{
119 struct dentry *dentry = file_dentry(file);
120 struct file *realfile;
121 int err;
122
123 err = ovl_open_maybe_copy_up(dentry, file->f_flags);
124 if (err)
125 return err;
126
127 /* No longer need these flags, so don't pass them on to underlying fs */
128 file->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
129
8c444d2a 130 realfile = ovl_open_realfile(file, ovl_inode_realdata(inode));
d1d04ef8
MS
131 if (IS_ERR(realfile))
132 return PTR_ERR(realfile);
133
134 file->private_data = realfile;
135
136 return 0;
137}
138
139static int ovl_release(struct inode *inode, struct file *file)
140{
141 fput(file->private_data);
142
143 return 0;
144}
145
146static loff_t ovl_llseek(struct file *file, loff_t offset, int whence)
147{
148 struct inode *realinode = ovl_inode_real(file_inode(file));
149
150 return generic_file_llseek_size(file, offset, whence,
151 realinode->i_sb->s_maxbytes,
152 i_size_read(realinode));
153}
154
16914e6f
MS
155static void ovl_file_accessed(struct file *file)
156{
157 struct inode *inode, *upperinode;
158
159 if (file->f_flags & O_NOATIME)
160 return;
161
162 inode = file_inode(file);
163 upperinode = ovl_inode_upper(inode);
164
165 if (!upperinode)
166 return;
167
168 if ((!timespec64_equal(&inode->i_mtime, &upperinode->i_mtime) ||
169 !timespec64_equal(&inode->i_ctime, &upperinode->i_ctime))) {
170 inode->i_mtime = upperinode->i_mtime;
171 inode->i_ctime = upperinode->i_ctime;
172 }
173
174 touch_atime(&file->f_path);
175}
176
177static rwf_t ovl_iocb_to_rwf(struct kiocb *iocb)
178{
179 int ifl = iocb->ki_flags;
180 rwf_t flags = 0;
181
182 if (ifl & IOCB_NOWAIT)
183 flags |= RWF_NOWAIT;
184 if (ifl & IOCB_HIPRI)
185 flags |= RWF_HIPRI;
186 if (ifl & IOCB_DSYNC)
187 flags |= RWF_DSYNC;
188 if (ifl & IOCB_SYNC)
189 flags |= RWF_SYNC;
190
191 return flags;
192}
193
194static ssize_t ovl_read_iter(struct kiocb *iocb, struct iov_iter *iter)
195{
196 struct file *file = iocb->ki_filp;
197 struct fd real;
198 const struct cred *old_cred;
199 ssize_t ret;
200
201 if (!iov_iter_count(iter))
202 return 0;
203
204 ret = ovl_real_fdget(file, &real);
205 if (ret)
206 return ret;
207
208 old_cred = ovl_override_creds(file_inode(file)->i_sb);
209 ret = vfs_iter_read(real.file, iter, &iocb->ki_pos,
210 ovl_iocb_to_rwf(iocb));
211 revert_creds(old_cred);
212
213 ovl_file_accessed(file);
214
215 fdput(real);
216
217 return ret;
218}
219
2a92e07e
MS
220static ssize_t ovl_write_iter(struct kiocb *iocb, struct iov_iter *iter)
221{
222 struct file *file = iocb->ki_filp;
223 struct inode *inode = file_inode(file);
224 struct fd real;
225 const struct cred *old_cred;
226 ssize_t ret;
227
228 if (!iov_iter_count(iter))
229 return 0;
230
231 inode_lock(inode);
232 /* Update mode */
233 ovl_copyattr(ovl_inode_real(inode), inode);
234 ret = file_remove_privs(file);
235 if (ret)
236 goto out_unlock;
237
238 ret = ovl_real_fdget(file, &real);
239 if (ret)
240 goto out_unlock;
241
242 old_cred = ovl_override_creds(file_inode(file)->i_sb);
898cc19d 243 file_start_write(real.file);
2a92e07e
MS
244 ret = vfs_iter_write(real.file, iter, &iocb->ki_pos,
245 ovl_iocb_to_rwf(iocb));
898cc19d 246 file_end_write(real.file);
2a92e07e
MS
247 revert_creds(old_cred);
248
249 /* Update size */
250 ovl_copyattr(ovl_inode_real(inode), inode);
251
252 fdput(real);
253
254out_unlock:
255 inode_unlock(inode);
256
257 return ret;
258}
259
de30dfd6
MS
260static int ovl_fsync(struct file *file, loff_t start, loff_t end, int datasync)
261{
262 struct fd real;
263 const struct cred *old_cred;
264 int ret;
265
8c444d2a 266 ret = ovl_real_fdget_meta(file, &real, !datasync);
de30dfd6
MS
267 if (ret)
268 return ret;
269
270 /* Don't sync lower file for fear of receiving EROFS error */
271 if (file_inode(real.file) == ovl_inode_upper(file_inode(file))) {
272 old_cred = ovl_override_creds(file_inode(file)->i_sb);
273 ret = vfs_fsync_range(real.file, start, end, datasync);
274 revert_creds(old_cred);
275 }
276
277 fdput(real);
278
279 return ret;
280}
281
2f502839
MS
282static int ovl_mmap(struct file *file, struct vm_area_struct *vma)
283{
284 struct file *realfile = file->private_data;
285 const struct cred *old_cred;
286 int ret;
287
288 if (!realfile->f_op->mmap)
289 return -ENODEV;
290
291 if (WARN_ON(file != vma->vm_file))
292 return -EIO;
293
294 vma->vm_file = get_file(realfile);
295
296 old_cred = ovl_override_creds(file_inode(file)->i_sb);
297 ret = call_mmap(vma->vm_file, vma);
298 revert_creds(old_cred);
299
300 if (ret) {
301 /* Drop reference count from new vm_file value */
302 fput(realfile);
303 } else {
304 /* Drop reference count from previous vm_file value */
305 fput(file);
306 }
307
308 ovl_file_accessed(file);
309
310 return ret;
311}
312
aab8848c
MS
313static long ovl_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
314{
315 struct inode *inode = file_inode(file);
316 struct fd real;
317 const struct cred *old_cred;
318 int ret;
319
320 ret = ovl_real_fdget(file, &real);
321 if (ret)
322 return ret;
323
324 old_cred = ovl_override_creds(file_inode(file)->i_sb);
325 ret = vfs_fallocate(real.file, mode, offset, len);
326 revert_creds(old_cred);
327
328 /* Update size */
329 ovl_copyattr(ovl_inode_real(inode), inode);
330
331 fdput(real);
332
333 return ret;
334}
335
b833a366
AG
336static int ovl_fadvise(struct file *file, loff_t offset, loff_t len, int advice)
337{
338 struct fd real;
339 const struct cred *old_cred;
340 int ret;
341
342 ret = ovl_real_fdget(file, &real);
343 if (ret)
344 return ret;
345
346 old_cred = ovl_override_creds(file_inode(file)->i_sb);
347 ret = vfs_fadvise(real.file, offset, len, advice);
348 revert_creds(old_cred);
349
350 fdput(real);
351
352 return ret;
353}
354
dab5ca8f
MS
355static long ovl_real_ioctl(struct file *file, unsigned int cmd,
356 unsigned long arg)
357{
358 struct fd real;
359 const struct cred *old_cred;
360 long ret;
361
362 ret = ovl_real_fdget(file, &real);
363 if (ret)
364 return ret;
365
366 old_cred = ovl_override_creds(file_inode(file)->i_sb);
367 ret = vfs_ioctl(real.file, cmd, arg);
368 revert_creds(old_cred);
369
370 fdput(real);
371
372 return ret;
373}
374
375static long ovl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
376{
377 long ret;
378 struct inode *inode = file_inode(file);
379
380 switch (cmd) {
381 case FS_IOC_GETFLAGS:
382 ret = ovl_real_ioctl(file, cmd, arg);
383 break;
384
385 case FS_IOC_SETFLAGS:
386 if (!inode_owner_or_capable(inode))
387 return -EACCES;
388
389 ret = mnt_want_write_file(file);
390 if (ret)
391 return ret;
392
935a074f 393 ret = ovl_copy_up_with_data(file_dentry(file));
dab5ca8f
MS
394 if (!ret) {
395 ret = ovl_real_ioctl(file, cmd, arg);
396
397 inode_lock(inode);
398 ovl_copyflags(ovl_inode_real(inode), inode);
399 inode_unlock(inode);
400 }
401
402 mnt_drop_write_file(file);
403 break;
404
405 default:
406 ret = -ENOTTY;
407 }
408
409 return ret;
410}
411
412static long ovl_compat_ioctl(struct file *file, unsigned int cmd,
413 unsigned long arg)
414{
415 switch (cmd) {
416 case FS_IOC32_GETFLAGS:
417 cmd = FS_IOC_GETFLAGS;
418 break;
419
420 case FS_IOC32_SETFLAGS:
421 cmd = FS_IOC_SETFLAGS;
422 break;
423
424 default:
425 return -ENOIOCTLCMD;
426 }
427
428 return ovl_ioctl(file, cmd, arg);
429}
430
8ede2055
MS
431enum ovl_copyop {
432 OVL_COPY,
433 OVL_CLONE,
434 OVL_DEDUPE,
435};
436
437static ssize_t ovl_copyfile(struct file *file_in, loff_t pos_in,
438 struct file *file_out, loff_t pos_out,
439 u64 len, unsigned int flags, enum ovl_copyop op)
440{
441 struct inode *inode_out = file_inode(file_out);
442 struct fd real_in, real_out;
443 const struct cred *old_cred;
444 ssize_t ret;
445
446 ret = ovl_real_fdget(file_out, &real_out);
447 if (ret)
448 return ret;
449
450 ret = ovl_real_fdget(file_in, &real_in);
451 if (ret) {
452 fdput(real_out);
453 return ret;
454 }
455
456 old_cred = ovl_override_creds(file_inode(file_out)->i_sb);
457 switch (op) {
458 case OVL_COPY:
459 ret = vfs_copy_file_range(real_in.file, pos_in,
460 real_out.file, pos_out, len, flags);
461 break;
462
463 case OVL_CLONE:
a725356b 464 ret = vfs_clone_file_range(real_in.file, pos_in,
8ede2055
MS
465 real_out.file, pos_out, len);
466 break;
467
468 case OVL_DEDUPE:
469 ret = vfs_dedupe_file_range_one(real_in.file, pos_in,
470 real_out.file, pos_out, len);
471 break;
472 }
473 revert_creds(old_cred);
474
475 /* Update size */
476 ovl_copyattr(ovl_inode_real(inode_out), inode_out);
477
478 fdput(real_in);
479 fdput(real_out);
480
481 return ret;
482}
483
484static ssize_t ovl_copy_file_range(struct file *file_in, loff_t pos_in,
485 struct file *file_out, loff_t pos_out,
486 size_t len, unsigned int flags)
487{
488 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, flags,
489 OVL_COPY);
490}
491
2e5dfc99
DW
492static int ovl_remap_file_range(struct file *file_in, loff_t pos_in,
493 struct file *file_out, loff_t pos_out,
494 u64 len, unsigned int remap_flags)
8ede2055 495{
2e5dfc99
DW
496 enum ovl_copyop op;
497
498 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
499 return -EINVAL;
500
501 if (remap_flags & REMAP_FILE_DEDUP)
502 op = OVL_DEDUPE;
503 else
504 op = OVL_CLONE;
8ede2055 505
8ede2055
MS
506 /*
507 * Don't copy up because of a dedupe request, this wouldn't make sense
508 * most of the time (data would be duplicated instead of deduplicated).
509 */
2e5dfc99
DW
510 if (op == OVL_DEDUPE &&
511 (!ovl_inode_upper(file_inode(file_in)) ||
512 !ovl_inode_upper(file_inode(file_out))))
8ede2055
MS
513 return -EPERM;
514
515 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, 0,
2e5dfc99 516 op);
8ede2055
MS
517}
518
d1d04ef8
MS
519const struct file_operations ovl_file_operations = {
520 .open = ovl_open,
521 .release = ovl_release,
522 .llseek = ovl_llseek,
16914e6f 523 .read_iter = ovl_read_iter,
2a92e07e 524 .write_iter = ovl_write_iter,
de30dfd6 525 .fsync = ovl_fsync,
2f502839 526 .mmap = ovl_mmap,
aab8848c 527 .fallocate = ovl_fallocate,
b833a366 528 .fadvise = ovl_fadvise,
dab5ca8f
MS
529 .unlocked_ioctl = ovl_ioctl,
530 .compat_ioctl = ovl_compat_ioctl,
8ede2055
MS
531
532 .copy_file_range = ovl_copy_file_range,
2e5dfc99 533 .remap_file_range = ovl_remap_file_range,
d1d04ef8 534};