Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2017 Red Hat, Inc.
4 */
5
6#include <linux/cred.h>
7#include <linux/file.h>
8#include <linux/mount.h>
9#include <linux/xattr.h>
10#include <linux/uio.h>
11#include <linux/uaccess.h>
12#include <linux/security.h>
13#include <linux/fs.h>
14#include <linux/backing-file.h>
15#include "overlayfs.h"
16
17static char ovl_whatisit(struct inode *inode, struct inode *realinode)
18{
19 if (realinode != ovl_inode_upper(inode))
20 return 'l';
21 if (ovl_has_upperdata(inode))
22 return 'u';
23 else
24 return 'm';
25}
26
27static struct file *ovl_open_realfile(const struct file *file,
28 const struct path *realpath)
29{
30 struct inode *realinode = d_inode(realpath->dentry);
31 struct inode *inode = file_inode(file);
32 struct mnt_idmap *real_idmap;
33 struct file *realfile;
34 const struct cred *old_cred;
35 int flags = file->f_flags | OVL_OPEN_FLAGS;
36 int acc_mode = ACC_MODE(flags);
37 int err;
38
39 if (flags & O_APPEND)
40 acc_mode |= MAY_APPEND;
41
42 old_cred = ovl_override_creds(inode->i_sb);
43 real_idmap = mnt_idmap(realpath->mnt);
44 err = inode_permission(real_idmap, realinode, MAY_OPEN | acc_mode);
45 if (err) {
46 realfile = ERR_PTR(err);
47 } else {
48 if (!inode_owner_or_capable(real_idmap, realinode))
49 flags &= ~O_NOATIME;
50
51 realfile = backing_file_open(&file->f_path, flags, realpath,
52 current_cred());
53 }
54 ovl_revert_creds(old_cred);
55
56 pr_debug("open(%p[%pD2/%c], 0%o) -> (%p, 0%o)\n",
57 file, file, ovl_whatisit(inode, realinode), file->f_flags,
58 realfile, IS_ERR(realfile) ? 0 : realfile->f_flags);
59
60 return realfile;
61}
62
63#define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
64
65static int ovl_change_flags(struct file *file, unsigned int flags)
66{
67 struct inode *inode = file_inode(file);
68 int err;
69
70 flags &= OVL_SETFL_MASK;
71
72 if (((flags ^ file->f_flags) & O_APPEND) && IS_APPEND(inode))
73 return -EPERM;
74
75 if ((flags & O_DIRECT) && !(file->f_mode & FMODE_CAN_ODIRECT))
76 return -EINVAL;
77
78 if (file->f_op->check_flags) {
79 err = file->f_op->check_flags(flags);
80 if (err)
81 return err;
82 }
83
84 spin_lock(&file->f_lock);
85 file->f_flags = (file->f_flags & ~OVL_SETFL_MASK) | flags;
86 file->f_iocb_flags = iocb_flags(file);
87 spin_unlock(&file->f_lock);
88
89 return 0;
90}
91
92struct ovl_file {
93 struct file *realfile;
94 struct file *upperfile;
95};
96
97struct ovl_file *ovl_file_alloc(struct file *realfile)
98{
99 struct ovl_file *of = kzalloc(sizeof(struct ovl_file), GFP_KERNEL);
100
101 if (unlikely(!of))
102 return NULL;
103
104 of->realfile = realfile;
105 return of;
106}
107
108void ovl_file_free(struct ovl_file *of)
109{
110 fput(of->realfile);
111 if (of->upperfile)
112 fput(of->upperfile);
113 kfree(of);
114}
115
116static bool ovl_is_real_file(const struct file *realfile,
117 const struct path *realpath)
118{
119 return file_inode(realfile) == d_inode(realpath->dentry);
120}
121
122static struct file *ovl_real_file_path(const struct file *file,
123 struct path *realpath)
124{
125 struct ovl_file *of = file->private_data;
126 struct file *realfile = of->realfile;
127
128 if (WARN_ON_ONCE(!realpath->dentry))
129 return ERR_PTR(-EIO);
130
131 /*
132 * If the realfile that we want is not where the data used to be at
133 * open time, either we'd been copied up, or it's an fsync of a
134 * metacopied file. We need the upperfile either way, so see if it
135 * is already opened and if it is not then open and store it.
136 */
137 if (unlikely(!ovl_is_real_file(realfile, realpath))) {
138 struct file *upperfile = READ_ONCE(of->upperfile);
139 struct file *old;
140
141 if (!upperfile) { /* Nobody opened upperfile yet */
142 upperfile = ovl_open_realfile(file, realpath);
143 if (IS_ERR(upperfile))
144 return upperfile;
145
146 /* Store the upperfile for later */
147 old = cmpxchg_release(&of->upperfile, NULL, upperfile);
148 if (old) { /* Someone opened upperfile before us */
149 fput(upperfile);
150 upperfile = old;
151 }
152 }
153 /*
154 * Stored file must be from the right inode, unless someone's
155 * been corrupting the upper layer.
156 */
157 if (WARN_ON_ONCE(!ovl_is_real_file(upperfile, realpath)))
158 return ERR_PTR(-EIO);
159
160 realfile = upperfile;
161 }
162
163 /* Did the flags change since open? */
164 if (unlikely((file->f_flags ^ realfile->f_flags) & ~OVL_OPEN_FLAGS)) {
165 int err = ovl_change_flags(realfile, file->f_flags);
166
167 if (err)
168 return ERR_PTR(err);
169 }
170
171 return realfile;
172}
173
174static struct file *ovl_real_file(const struct file *file)
175{
176 struct dentry *dentry = file_dentry(file);
177 struct path realpath;
178 int err;
179
180 if (d_is_dir(dentry)) {
181 struct file *f = ovl_dir_real_file(file, false);
182
183 if (WARN_ON_ONCE(!f))
184 return ERR_PTR(-EIO);
185 return f;
186 }
187
188 /* lazy lookup and verify of lowerdata */
189 err = ovl_verify_lowerdata(dentry);
190 if (err)
191 return ERR_PTR(err);
192
193 ovl_path_realdata(dentry, &realpath);
194
195 return ovl_real_file_path(file, &realpath);
196}
197
198static int ovl_open(struct inode *inode, struct file *file)
199{
200 struct dentry *dentry = file_dentry(file);
201 struct file *realfile;
202 struct path realpath;
203 struct ovl_file *of;
204 int err;
205
206 /* lazy lookup and verify lowerdata */
207 err = ovl_verify_lowerdata(dentry);
208 if (err)
209 return err;
210
211 err = ovl_maybe_copy_up(dentry, file->f_flags);
212 if (err)
213 return err;
214
215 /* No longer need these flags, so don't pass them on to underlying fs */
216 file->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
217
218 ovl_path_realdata(dentry, &realpath);
219 if (!realpath.dentry)
220 return -EIO;
221
222 realfile = ovl_open_realfile(file, &realpath);
223 if (IS_ERR(realfile))
224 return PTR_ERR(realfile);
225
226 of = ovl_file_alloc(realfile);
227 if (!of) {
228 fput(realfile);
229 return -ENOMEM;
230 }
231
232 file->private_data = of;
233
234 return 0;
235}
236
237static int ovl_release(struct inode *inode, struct file *file)
238{
239 ovl_file_free(file->private_data);
240 return 0;
241}
242
243static loff_t ovl_llseek(struct file *file, loff_t offset, int whence)
244{
245 struct inode *inode = file_inode(file);
246 struct file *realfile;
247 const struct cred *old_cred;
248 loff_t ret;
249
250 /*
251 * The two special cases below do not need to involve real fs,
252 * so we can optimizing concurrent callers.
253 */
254 if (offset == 0) {
255 if (whence == SEEK_CUR)
256 return file->f_pos;
257
258 if (whence == SEEK_SET)
259 return vfs_setpos(file, 0, 0);
260 }
261
262 realfile = ovl_real_file(file);
263 if (IS_ERR(realfile))
264 return PTR_ERR(realfile);
265
266 /*
267 * Overlay file f_pos is the master copy that is preserved
268 * through copy up and modified on read/write, but only real
269 * fs knows how to SEEK_HOLE/SEEK_DATA and real fs may impose
270 * limitations that are more strict than ->s_maxbytes for specific
271 * files, so we use the real file to perform seeks.
272 */
273 ovl_inode_lock(inode);
274 realfile->f_pos = file->f_pos;
275
276 old_cred = ovl_override_creds(inode->i_sb);
277 ret = vfs_llseek(realfile, offset, whence);
278 ovl_revert_creds(old_cred);
279
280 file->f_pos = realfile->f_pos;
281 ovl_inode_unlock(inode);
282
283 return ret;
284}
285
286static void ovl_file_modified(struct file *file)
287{
288 /* Update size/mtime */
289 ovl_copyattr(file_inode(file));
290}
291
292static void ovl_file_end_write(struct kiocb *iocb, ssize_t ret)
293{
294 ovl_file_modified(iocb->ki_filp);
295}
296
297static void ovl_file_accessed(struct file *file)
298{
299 struct inode *inode, *upperinode;
300 struct timespec64 ctime, uctime;
301 struct timespec64 mtime, umtime;
302
303 if (file->f_flags & O_NOATIME)
304 return;
305
306 inode = file_inode(file);
307 upperinode = ovl_inode_upper(inode);
308
309 if (!upperinode)
310 return;
311
312 ctime = inode_get_ctime(inode);
313 uctime = inode_get_ctime(upperinode);
314 mtime = inode_get_mtime(inode);
315 umtime = inode_get_mtime(upperinode);
316 if ((!timespec64_equal(&mtime, &umtime)) ||
317 !timespec64_equal(&ctime, &uctime)) {
318 inode_set_mtime_to_ts(inode, inode_get_mtime(upperinode));
319 inode_set_ctime_to_ts(inode, uctime);
320 }
321
322 touch_atime(&file->f_path);
323}
324
325static ssize_t ovl_read_iter(struct kiocb *iocb, struct iov_iter *iter)
326{
327 struct file *file = iocb->ki_filp;
328 struct file *realfile;
329 struct backing_file_ctx ctx = {
330 .cred = ovl_creds(file_inode(file)->i_sb),
331 .accessed = ovl_file_accessed,
332 };
333
334 if (!iov_iter_count(iter))
335 return 0;
336
337 realfile = ovl_real_file(file);
338 if (IS_ERR(realfile))
339 return PTR_ERR(realfile);
340
341 return backing_file_read_iter(realfile, iter, iocb, iocb->ki_flags,
342 &ctx);
343}
344
345static ssize_t ovl_write_iter(struct kiocb *iocb, struct iov_iter *iter)
346{
347 struct file *file = iocb->ki_filp;
348 struct inode *inode = file_inode(file);
349 struct file *realfile;
350 ssize_t ret;
351 int ifl = iocb->ki_flags;
352 struct backing_file_ctx ctx = {
353 .cred = ovl_creds(inode->i_sb),
354 .end_write = ovl_file_end_write,
355 };
356
357 if (!iov_iter_count(iter))
358 return 0;
359
360 inode_lock(inode);
361 /* Update mode */
362 ovl_copyattr(inode);
363
364 realfile = ovl_real_file(file);
365 ret = PTR_ERR(realfile);
366 if (IS_ERR(realfile))
367 goto out_unlock;
368
369 if (!ovl_should_sync(OVL_FS(inode->i_sb)))
370 ifl &= ~(IOCB_DSYNC | IOCB_SYNC);
371
372 /*
373 * Overlayfs doesn't support deferred completions, don't copy
374 * this property in case it is set by the issuer.
375 */
376 ifl &= ~IOCB_DIO_CALLER_COMP;
377 ret = backing_file_write_iter(realfile, iter, iocb, ifl, &ctx);
378
379out_unlock:
380 inode_unlock(inode);
381
382 return ret;
383}
384
385static ssize_t ovl_splice_read(struct file *in, loff_t *ppos,
386 struct pipe_inode_info *pipe, size_t len,
387 unsigned int flags)
388{
389 struct file *realfile;
390 ssize_t ret;
391 struct backing_file_ctx ctx = {
392 .cred = ovl_creds(file_inode(in)->i_sb),
393 .accessed = ovl_file_accessed,
394 };
395 struct kiocb iocb;
396
397 realfile = ovl_real_file(in);
398 if (IS_ERR(realfile))
399 return PTR_ERR(realfile);
400
401 init_sync_kiocb(&iocb, in);
402 iocb.ki_pos = *ppos;
403 ret = backing_file_splice_read(realfile, &iocb, pipe, len, flags, &ctx);
404 *ppos = iocb.ki_pos;
405
406 return ret;
407}
408
409/*
410 * Calling iter_file_splice_write() directly from overlay's f_op may deadlock
411 * due to lock order inversion between pipe->mutex in iter_file_splice_write()
412 * and file_start_write(realfile) in ovl_write_iter().
413 *
414 * So do everything ovl_write_iter() does and call iter_file_splice_write() on
415 * the real file.
416 */
417static ssize_t ovl_splice_write(struct pipe_inode_info *pipe, struct file *out,
418 loff_t *ppos, size_t len, unsigned int flags)
419{
420 struct file *realfile;
421 struct inode *inode = file_inode(out);
422 ssize_t ret;
423 struct backing_file_ctx ctx = {
424 .cred = ovl_creds(inode->i_sb),
425 .end_write = ovl_file_end_write,
426 };
427 struct kiocb iocb;
428
429 inode_lock(inode);
430 /* Update mode */
431 ovl_copyattr(inode);
432
433 realfile = ovl_real_file(out);
434 ret = PTR_ERR(realfile);
435 if (IS_ERR(realfile))
436 goto out_unlock;
437
438 init_sync_kiocb(&iocb, out);
439 iocb.ki_pos = *ppos;
440 ret = backing_file_splice_write(pipe, realfile, &iocb, len, flags, &ctx);
441 *ppos = iocb.ki_pos;
442
443out_unlock:
444 inode_unlock(inode);
445
446 return ret;
447}
448
449static int ovl_fsync(struct file *file, loff_t start, loff_t end, int datasync)
450{
451 struct dentry *dentry = file_dentry(file);
452 enum ovl_path_type type;
453 struct path upperpath;
454 struct file *upperfile;
455 const struct cred *old_cred;
456 int ret;
457
458 ret = ovl_sync_status(OVL_FS(file_inode(file)->i_sb));
459 if (ret <= 0)
460 return ret;
461
462 /* Don't sync lower file for fear of receiving EROFS error */
463 type = ovl_path_type(dentry);
464 if (!OVL_TYPE_UPPER(type) || (datasync && OVL_TYPE_MERGE(type)))
465 return 0;
466
467 ovl_path_upper(dentry, &upperpath);
468 upperfile = ovl_real_file_path(file, &upperpath);
469 if (IS_ERR(upperfile))
470 return PTR_ERR(upperfile);
471
472 old_cred = ovl_override_creds(file_inode(file)->i_sb);
473 ret = vfs_fsync_range(upperfile, start, end, datasync);
474 ovl_revert_creds(old_cred);
475
476 return ret;
477}
478
479static int ovl_mmap(struct file *file, struct vm_area_struct *vma)
480{
481 struct ovl_file *of = file->private_data;
482 struct backing_file_ctx ctx = {
483 .cred = ovl_creds(file_inode(file)->i_sb),
484 .accessed = ovl_file_accessed,
485 };
486
487 return backing_file_mmap(of->realfile, vma, &ctx);
488}
489
490static long ovl_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
491{
492 struct inode *inode = file_inode(file);
493 struct file *realfile;
494 const struct cred *old_cred;
495 int ret;
496
497 inode_lock(inode);
498 /* Update mode */
499 ovl_copyattr(inode);
500 ret = file_remove_privs(file);
501 if (ret)
502 goto out_unlock;
503
504 realfile = ovl_real_file(file);
505 ret = PTR_ERR(realfile);
506 if (IS_ERR(realfile))
507 goto out_unlock;
508
509 old_cred = ovl_override_creds(file_inode(file)->i_sb);
510 ret = vfs_fallocate(realfile, mode, offset, len);
511 ovl_revert_creds(old_cred);
512
513 /* Update size */
514 ovl_file_modified(file);
515
516out_unlock:
517 inode_unlock(inode);
518
519 return ret;
520}
521
522static int ovl_fadvise(struct file *file, loff_t offset, loff_t len, int advice)
523{
524 struct file *realfile;
525 const struct cred *old_cred;
526 int ret;
527
528 realfile = ovl_real_file(file);
529 if (IS_ERR(realfile))
530 return PTR_ERR(realfile);
531
532 old_cred = ovl_override_creds(file_inode(file)->i_sb);
533 ret = vfs_fadvise(realfile, offset, len, advice);
534 ovl_revert_creds(old_cred);
535
536 return ret;
537}
538
539enum ovl_copyop {
540 OVL_COPY,
541 OVL_CLONE,
542 OVL_DEDUPE,
543};
544
545static loff_t ovl_copyfile(struct file *file_in, loff_t pos_in,
546 struct file *file_out, loff_t pos_out,
547 loff_t len, unsigned int flags, enum ovl_copyop op)
548{
549 struct inode *inode_out = file_inode(file_out);
550 struct file *realfile_in, *realfile_out;
551 const struct cred *old_cred;
552 loff_t ret;
553
554 inode_lock(inode_out);
555 if (op != OVL_DEDUPE) {
556 /* Update mode */
557 ovl_copyattr(inode_out);
558 ret = file_remove_privs(file_out);
559 if (ret)
560 goto out_unlock;
561 }
562
563 realfile_out = ovl_real_file(file_out);
564 ret = PTR_ERR(realfile_out);
565 if (IS_ERR(realfile_out))
566 goto out_unlock;
567
568 realfile_in = ovl_real_file(file_in);
569 ret = PTR_ERR(realfile_in);
570 if (IS_ERR(realfile_in))
571 goto out_unlock;
572
573 old_cred = ovl_override_creds(file_inode(file_out)->i_sb);
574 switch (op) {
575 case OVL_COPY:
576 ret = vfs_copy_file_range(realfile_in, pos_in,
577 realfile_out, pos_out, len, flags);
578 break;
579
580 case OVL_CLONE:
581 ret = vfs_clone_file_range(realfile_in, pos_in,
582 realfile_out, pos_out, len, flags);
583 break;
584
585 case OVL_DEDUPE:
586 ret = vfs_dedupe_file_range_one(realfile_in, pos_in,
587 realfile_out, pos_out, len,
588 flags);
589 break;
590 }
591 ovl_revert_creds(old_cred);
592
593 /* Update size */
594 ovl_file_modified(file_out);
595
596out_unlock:
597 inode_unlock(inode_out);
598
599 return ret;
600}
601
602static ssize_t ovl_copy_file_range(struct file *file_in, loff_t pos_in,
603 struct file *file_out, loff_t pos_out,
604 size_t len, unsigned int flags)
605{
606 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, flags,
607 OVL_COPY);
608}
609
610static loff_t ovl_remap_file_range(struct file *file_in, loff_t pos_in,
611 struct file *file_out, loff_t pos_out,
612 loff_t len, unsigned int remap_flags)
613{
614 enum ovl_copyop op;
615
616 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
617 return -EINVAL;
618
619 if (remap_flags & REMAP_FILE_DEDUP)
620 op = OVL_DEDUPE;
621 else
622 op = OVL_CLONE;
623
624 /*
625 * Don't copy up because of a dedupe request, this wouldn't make sense
626 * most of the time (data would be duplicated instead of deduplicated).
627 */
628 if (op == OVL_DEDUPE &&
629 (!ovl_inode_upper(file_inode(file_in)) ||
630 !ovl_inode_upper(file_inode(file_out))))
631 return -EPERM;
632
633 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len,
634 remap_flags, op);
635}
636
637static int ovl_flush(struct file *file, fl_owner_t id)
638{
639 struct file *realfile;
640 const struct cred *old_cred;
641 int err = 0;
642
643 realfile = ovl_real_file(file);
644 if (IS_ERR(realfile))
645 return PTR_ERR(realfile);
646
647 if (realfile->f_op->flush) {
648 old_cred = ovl_override_creds(file_inode(file)->i_sb);
649 err = realfile->f_op->flush(realfile, id);
650 ovl_revert_creds(old_cred);
651 }
652
653 return err;
654}
655
656const struct file_operations ovl_file_operations = {
657 .open = ovl_open,
658 .release = ovl_release,
659 .llseek = ovl_llseek,
660 .read_iter = ovl_read_iter,
661 .write_iter = ovl_write_iter,
662 .fsync = ovl_fsync,
663 .mmap = ovl_mmap,
664 .fallocate = ovl_fallocate,
665 .fadvise = ovl_fadvise,
666 .flush = ovl_flush,
667 .splice_read = ovl_splice_read,
668 .splice_write = ovl_splice_write,
669
670 .copy_file_range = ovl_copy_file_range,
671 .remap_file_range = ovl_remap_file_range,
672};
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2017 Red Hat, Inc.
4 */
5
6#include <linux/cred.h>
7#include <linux/file.h>
8#include <linux/mount.h>
9#include <linux/xattr.h>
10#include <linux/uio.h>
11#include <linux/uaccess.h>
12#include <linux/splice.h>
13#include <linux/security.h>
14#include <linux/mm.h>
15#include <linux/fs.h>
16#include "overlayfs.h"
17
18struct ovl_aio_req {
19 struct kiocb iocb;
20 refcount_t ref;
21 struct kiocb *orig_iocb;
22 struct fd fd;
23};
24
25static struct kmem_cache *ovl_aio_request_cachep;
26
27static char ovl_whatisit(struct inode *inode, struct inode *realinode)
28{
29 if (realinode != ovl_inode_upper(inode))
30 return 'l';
31 if (ovl_has_upperdata(inode))
32 return 'u';
33 else
34 return 'm';
35}
36
37/* No atime modification nor notify on underlying */
38#define OVL_OPEN_FLAGS (O_NOATIME | FMODE_NONOTIFY)
39
40static struct file *ovl_open_realfile(const struct file *file,
41 const struct path *realpath)
42{
43 struct inode *realinode = d_inode(realpath->dentry);
44 struct inode *inode = file_inode(file);
45 struct user_namespace *real_mnt_userns;
46 struct file *realfile;
47 const struct cred *old_cred;
48 int flags = file->f_flags | OVL_OPEN_FLAGS;
49 int acc_mode = ACC_MODE(flags);
50 int err;
51
52 if (flags & O_APPEND)
53 acc_mode |= MAY_APPEND;
54
55 old_cred = ovl_override_creds(inode->i_sb);
56 real_mnt_userns = mnt_user_ns(realpath->mnt);
57 err = inode_permission(real_mnt_userns, realinode, MAY_OPEN | acc_mode);
58 if (err) {
59 realfile = ERR_PTR(err);
60 } else {
61 if (!inode_owner_or_capable(real_mnt_userns, realinode))
62 flags &= ~O_NOATIME;
63
64 realfile = open_with_fake_path(&file->f_path, flags, realinode,
65 current_cred());
66 }
67 revert_creds(old_cred);
68
69 pr_debug("open(%p[%pD2/%c], 0%o) -> (%p, 0%o)\n",
70 file, file, ovl_whatisit(inode, realinode), file->f_flags,
71 realfile, IS_ERR(realfile) ? 0 : realfile->f_flags);
72
73 return realfile;
74}
75
76#define OVL_SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT)
77
78static int ovl_change_flags(struct file *file, unsigned int flags)
79{
80 struct inode *inode = file_inode(file);
81 int err;
82
83 flags &= OVL_SETFL_MASK;
84
85 if (((flags ^ file->f_flags) & O_APPEND) && IS_APPEND(inode))
86 return -EPERM;
87
88 if ((flags & O_DIRECT) && !(file->f_mode & FMODE_CAN_ODIRECT))
89 return -EINVAL;
90
91 if (file->f_op->check_flags) {
92 err = file->f_op->check_flags(flags);
93 if (err)
94 return err;
95 }
96
97 spin_lock(&file->f_lock);
98 file->f_flags = (file->f_flags & ~OVL_SETFL_MASK) | flags;
99 file->f_iocb_flags = iocb_flags(file);
100 spin_unlock(&file->f_lock);
101
102 return 0;
103}
104
105static int ovl_real_fdget_meta(const struct file *file, struct fd *real,
106 bool allow_meta)
107{
108 struct dentry *dentry = file_dentry(file);
109 struct path realpath;
110
111 real->flags = 0;
112 real->file = file->private_data;
113
114 if (allow_meta)
115 ovl_path_real(dentry, &realpath);
116 else
117 ovl_path_realdata(dentry, &realpath);
118
119 /* Has it been copied up since we'd opened it? */
120 if (unlikely(file_inode(real->file) != d_inode(realpath.dentry))) {
121 real->flags = FDPUT_FPUT;
122 real->file = ovl_open_realfile(file, &realpath);
123
124 return PTR_ERR_OR_ZERO(real->file);
125 }
126
127 /* Did the flags change since open? */
128 if (unlikely((file->f_flags ^ real->file->f_flags) & ~OVL_OPEN_FLAGS))
129 return ovl_change_flags(real->file, file->f_flags);
130
131 return 0;
132}
133
134static int ovl_real_fdget(const struct file *file, struct fd *real)
135{
136 if (d_is_dir(file_dentry(file))) {
137 real->flags = 0;
138 real->file = ovl_dir_real_file(file, false);
139
140 return PTR_ERR_OR_ZERO(real->file);
141 }
142
143 return ovl_real_fdget_meta(file, real, false);
144}
145
146static int ovl_open(struct inode *inode, struct file *file)
147{
148 struct dentry *dentry = file_dentry(file);
149 struct file *realfile;
150 struct path realpath;
151 int err;
152
153 err = ovl_maybe_copy_up(dentry, file->f_flags);
154 if (err)
155 return err;
156
157 /* No longer need these flags, so don't pass them on to underlying fs */
158 file->f_flags &= ~(O_CREAT | O_EXCL | O_NOCTTY | O_TRUNC);
159
160 ovl_path_realdata(dentry, &realpath);
161 realfile = ovl_open_realfile(file, &realpath);
162 if (IS_ERR(realfile))
163 return PTR_ERR(realfile);
164
165 file->private_data = realfile;
166
167 return 0;
168}
169
170static int ovl_release(struct inode *inode, struct file *file)
171{
172 fput(file->private_data);
173
174 return 0;
175}
176
177static loff_t ovl_llseek(struct file *file, loff_t offset, int whence)
178{
179 struct inode *inode = file_inode(file);
180 struct fd real;
181 const struct cred *old_cred;
182 loff_t ret;
183
184 /*
185 * The two special cases below do not need to involve real fs,
186 * so we can optimizing concurrent callers.
187 */
188 if (offset == 0) {
189 if (whence == SEEK_CUR)
190 return file->f_pos;
191
192 if (whence == SEEK_SET)
193 return vfs_setpos(file, 0, 0);
194 }
195
196 ret = ovl_real_fdget(file, &real);
197 if (ret)
198 return ret;
199
200 /*
201 * Overlay file f_pos is the master copy that is preserved
202 * through copy up and modified on read/write, but only real
203 * fs knows how to SEEK_HOLE/SEEK_DATA and real fs may impose
204 * limitations that are more strict than ->s_maxbytes for specific
205 * files, so we use the real file to perform seeks.
206 */
207 ovl_inode_lock(inode);
208 real.file->f_pos = file->f_pos;
209
210 old_cred = ovl_override_creds(inode->i_sb);
211 ret = vfs_llseek(real.file, offset, whence);
212 revert_creds(old_cred);
213
214 file->f_pos = real.file->f_pos;
215 ovl_inode_unlock(inode);
216
217 fdput(real);
218
219 return ret;
220}
221
222static void ovl_file_accessed(struct file *file)
223{
224 struct inode *inode, *upperinode;
225
226 if (file->f_flags & O_NOATIME)
227 return;
228
229 inode = file_inode(file);
230 upperinode = ovl_inode_upper(inode);
231
232 if (!upperinode)
233 return;
234
235 if ((!timespec64_equal(&inode->i_mtime, &upperinode->i_mtime) ||
236 !timespec64_equal(&inode->i_ctime, &upperinode->i_ctime))) {
237 inode->i_mtime = upperinode->i_mtime;
238 inode->i_ctime = upperinode->i_ctime;
239 }
240
241 touch_atime(&file->f_path);
242}
243
244static rwf_t ovl_iocb_to_rwf(int ifl)
245{
246 rwf_t flags = 0;
247
248 if (ifl & IOCB_NOWAIT)
249 flags |= RWF_NOWAIT;
250 if (ifl & IOCB_HIPRI)
251 flags |= RWF_HIPRI;
252 if (ifl & IOCB_DSYNC)
253 flags |= RWF_DSYNC;
254 if (ifl & IOCB_SYNC)
255 flags |= RWF_SYNC;
256
257 return flags;
258}
259
260static inline void ovl_aio_put(struct ovl_aio_req *aio_req)
261{
262 if (refcount_dec_and_test(&aio_req->ref)) {
263 fdput(aio_req->fd);
264 kmem_cache_free(ovl_aio_request_cachep, aio_req);
265 }
266}
267
268static void ovl_aio_cleanup_handler(struct ovl_aio_req *aio_req)
269{
270 struct kiocb *iocb = &aio_req->iocb;
271 struct kiocb *orig_iocb = aio_req->orig_iocb;
272
273 if (iocb->ki_flags & IOCB_WRITE) {
274 struct inode *inode = file_inode(orig_iocb->ki_filp);
275
276 /* Actually acquired in ovl_write_iter() */
277 __sb_writers_acquired(file_inode(iocb->ki_filp)->i_sb,
278 SB_FREEZE_WRITE);
279 file_end_write(iocb->ki_filp);
280 ovl_copyattr(inode);
281 }
282
283 orig_iocb->ki_pos = iocb->ki_pos;
284 ovl_aio_put(aio_req);
285}
286
287static void ovl_aio_rw_complete(struct kiocb *iocb, long res)
288{
289 struct ovl_aio_req *aio_req = container_of(iocb,
290 struct ovl_aio_req, iocb);
291 struct kiocb *orig_iocb = aio_req->orig_iocb;
292
293 ovl_aio_cleanup_handler(aio_req);
294 orig_iocb->ki_complete(orig_iocb, res);
295}
296
297static ssize_t ovl_read_iter(struct kiocb *iocb, struct iov_iter *iter)
298{
299 struct file *file = iocb->ki_filp;
300 struct fd real;
301 const struct cred *old_cred;
302 ssize_t ret;
303
304 if (!iov_iter_count(iter))
305 return 0;
306
307 ret = ovl_real_fdget(file, &real);
308 if (ret)
309 return ret;
310
311 ret = -EINVAL;
312 if (iocb->ki_flags & IOCB_DIRECT &&
313 !(real.file->f_mode & FMODE_CAN_ODIRECT))
314 goto out_fdput;
315
316 old_cred = ovl_override_creds(file_inode(file)->i_sb);
317 if (is_sync_kiocb(iocb)) {
318 ret = vfs_iter_read(real.file, iter, &iocb->ki_pos,
319 ovl_iocb_to_rwf(iocb->ki_flags));
320 } else {
321 struct ovl_aio_req *aio_req;
322
323 ret = -ENOMEM;
324 aio_req = kmem_cache_zalloc(ovl_aio_request_cachep, GFP_KERNEL);
325 if (!aio_req)
326 goto out;
327
328 aio_req->fd = real;
329 real.flags = 0;
330 aio_req->orig_iocb = iocb;
331 kiocb_clone(&aio_req->iocb, iocb, real.file);
332 aio_req->iocb.ki_complete = ovl_aio_rw_complete;
333 refcount_set(&aio_req->ref, 2);
334 ret = vfs_iocb_iter_read(real.file, &aio_req->iocb, iter);
335 ovl_aio_put(aio_req);
336 if (ret != -EIOCBQUEUED)
337 ovl_aio_cleanup_handler(aio_req);
338 }
339out:
340 revert_creds(old_cred);
341 ovl_file_accessed(file);
342out_fdput:
343 fdput(real);
344
345 return ret;
346}
347
348static ssize_t ovl_write_iter(struct kiocb *iocb, struct iov_iter *iter)
349{
350 struct file *file = iocb->ki_filp;
351 struct inode *inode = file_inode(file);
352 struct fd real;
353 const struct cred *old_cred;
354 ssize_t ret;
355 int ifl = iocb->ki_flags;
356
357 if (!iov_iter_count(iter))
358 return 0;
359
360 inode_lock(inode);
361 /* Update mode */
362 ovl_copyattr(inode);
363 ret = file_remove_privs(file);
364 if (ret)
365 goto out_unlock;
366
367 ret = ovl_real_fdget(file, &real);
368 if (ret)
369 goto out_unlock;
370
371 ret = -EINVAL;
372 if (iocb->ki_flags & IOCB_DIRECT &&
373 !(real.file->f_mode & FMODE_CAN_ODIRECT))
374 goto out_fdput;
375
376 if (!ovl_should_sync(OVL_FS(inode->i_sb)))
377 ifl &= ~(IOCB_DSYNC | IOCB_SYNC);
378
379 old_cred = ovl_override_creds(file_inode(file)->i_sb);
380 if (is_sync_kiocb(iocb)) {
381 file_start_write(real.file);
382 ret = vfs_iter_write(real.file, iter, &iocb->ki_pos,
383 ovl_iocb_to_rwf(ifl));
384 file_end_write(real.file);
385 /* Update size */
386 ovl_copyattr(inode);
387 } else {
388 struct ovl_aio_req *aio_req;
389
390 ret = -ENOMEM;
391 aio_req = kmem_cache_zalloc(ovl_aio_request_cachep, GFP_KERNEL);
392 if (!aio_req)
393 goto out;
394
395 file_start_write(real.file);
396 /* Pacify lockdep, same trick as done in aio_write() */
397 __sb_writers_release(file_inode(real.file)->i_sb,
398 SB_FREEZE_WRITE);
399 aio_req->fd = real;
400 real.flags = 0;
401 aio_req->orig_iocb = iocb;
402 kiocb_clone(&aio_req->iocb, iocb, real.file);
403 aio_req->iocb.ki_flags = ifl;
404 aio_req->iocb.ki_complete = ovl_aio_rw_complete;
405 refcount_set(&aio_req->ref, 2);
406 ret = vfs_iocb_iter_write(real.file, &aio_req->iocb, iter);
407 ovl_aio_put(aio_req);
408 if (ret != -EIOCBQUEUED)
409 ovl_aio_cleanup_handler(aio_req);
410 }
411out:
412 revert_creds(old_cred);
413out_fdput:
414 fdput(real);
415
416out_unlock:
417 inode_unlock(inode);
418
419 return ret;
420}
421
422/*
423 * Calling iter_file_splice_write() directly from overlay's f_op may deadlock
424 * due to lock order inversion between pipe->mutex in iter_file_splice_write()
425 * and file_start_write(real.file) in ovl_write_iter().
426 *
427 * So do everything ovl_write_iter() does and call iter_file_splice_write() on
428 * the real file.
429 */
430static ssize_t ovl_splice_write(struct pipe_inode_info *pipe, struct file *out,
431 loff_t *ppos, size_t len, unsigned int flags)
432{
433 struct fd real;
434 const struct cred *old_cred;
435 struct inode *inode = file_inode(out);
436 ssize_t ret;
437
438 inode_lock(inode);
439 /* Update mode */
440 ovl_copyattr(inode);
441 ret = file_remove_privs(out);
442 if (ret)
443 goto out_unlock;
444
445 ret = ovl_real_fdget(out, &real);
446 if (ret)
447 goto out_unlock;
448
449 old_cred = ovl_override_creds(inode->i_sb);
450 file_start_write(real.file);
451
452 ret = iter_file_splice_write(pipe, real.file, ppos, len, flags);
453
454 file_end_write(real.file);
455 /* Update size */
456 ovl_copyattr(inode);
457 revert_creds(old_cred);
458 fdput(real);
459
460out_unlock:
461 inode_unlock(inode);
462
463 return ret;
464}
465
466static int ovl_fsync(struct file *file, loff_t start, loff_t end, int datasync)
467{
468 struct fd real;
469 const struct cred *old_cred;
470 int ret;
471
472 ret = ovl_sync_status(OVL_FS(file_inode(file)->i_sb));
473 if (ret <= 0)
474 return ret;
475
476 ret = ovl_real_fdget_meta(file, &real, !datasync);
477 if (ret)
478 return ret;
479
480 /* Don't sync lower file for fear of receiving EROFS error */
481 if (file_inode(real.file) == ovl_inode_upper(file_inode(file))) {
482 old_cred = ovl_override_creds(file_inode(file)->i_sb);
483 ret = vfs_fsync_range(real.file, start, end, datasync);
484 revert_creds(old_cred);
485 }
486
487 fdput(real);
488
489 return ret;
490}
491
492static int ovl_mmap(struct file *file, struct vm_area_struct *vma)
493{
494 struct file *realfile = file->private_data;
495 const struct cred *old_cred;
496 int ret;
497
498 if (!realfile->f_op->mmap)
499 return -ENODEV;
500
501 if (WARN_ON(file != vma->vm_file))
502 return -EIO;
503
504 vma_set_file(vma, realfile);
505
506 old_cred = ovl_override_creds(file_inode(file)->i_sb);
507 ret = call_mmap(vma->vm_file, vma);
508 revert_creds(old_cred);
509 ovl_file_accessed(file);
510
511 return ret;
512}
513
514static long ovl_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
515{
516 struct inode *inode = file_inode(file);
517 struct fd real;
518 const struct cred *old_cred;
519 int ret;
520
521 inode_lock(inode);
522 /* Update mode */
523 ovl_copyattr(inode);
524 ret = file_remove_privs(file);
525 if (ret)
526 goto out_unlock;
527
528 ret = ovl_real_fdget(file, &real);
529 if (ret)
530 goto out_unlock;
531
532 old_cred = ovl_override_creds(file_inode(file)->i_sb);
533 ret = vfs_fallocate(real.file, mode, offset, len);
534 revert_creds(old_cred);
535
536 /* Update size */
537 ovl_copyattr(inode);
538
539 fdput(real);
540
541out_unlock:
542 inode_unlock(inode);
543
544 return ret;
545}
546
547static int ovl_fadvise(struct file *file, loff_t offset, loff_t len, int advice)
548{
549 struct fd real;
550 const struct cred *old_cred;
551 int ret;
552
553 ret = ovl_real_fdget(file, &real);
554 if (ret)
555 return ret;
556
557 old_cred = ovl_override_creds(file_inode(file)->i_sb);
558 ret = vfs_fadvise(real.file, offset, len, advice);
559 revert_creds(old_cred);
560
561 fdput(real);
562
563 return ret;
564}
565
566enum ovl_copyop {
567 OVL_COPY,
568 OVL_CLONE,
569 OVL_DEDUPE,
570};
571
572static loff_t ovl_copyfile(struct file *file_in, loff_t pos_in,
573 struct file *file_out, loff_t pos_out,
574 loff_t len, unsigned int flags, enum ovl_copyop op)
575{
576 struct inode *inode_out = file_inode(file_out);
577 struct fd real_in, real_out;
578 const struct cred *old_cred;
579 loff_t ret;
580
581 inode_lock(inode_out);
582 if (op != OVL_DEDUPE) {
583 /* Update mode */
584 ovl_copyattr(inode_out);
585 ret = file_remove_privs(file_out);
586 if (ret)
587 goto out_unlock;
588 }
589
590 ret = ovl_real_fdget(file_out, &real_out);
591 if (ret)
592 goto out_unlock;
593
594 ret = ovl_real_fdget(file_in, &real_in);
595 if (ret) {
596 fdput(real_out);
597 goto out_unlock;
598 }
599
600 old_cred = ovl_override_creds(file_inode(file_out)->i_sb);
601 switch (op) {
602 case OVL_COPY:
603 ret = vfs_copy_file_range(real_in.file, pos_in,
604 real_out.file, pos_out, len, flags);
605 break;
606
607 case OVL_CLONE:
608 ret = vfs_clone_file_range(real_in.file, pos_in,
609 real_out.file, pos_out, len, flags);
610 break;
611
612 case OVL_DEDUPE:
613 ret = vfs_dedupe_file_range_one(real_in.file, pos_in,
614 real_out.file, pos_out, len,
615 flags);
616 break;
617 }
618 revert_creds(old_cred);
619
620 /* Update size */
621 ovl_copyattr(inode_out);
622
623 fdput(real_in);
624 fdput(real_out);
625
626out_unlock:
627 inode_unlock(inode_out);
628
629 return ret;
630}
631
632static ssize_t ovl_copy_file_range(struct file *file_in, loff_t pos_in,
633 struct file *file_out, loff_t pos_out,
634 size_t len, unsigned int flags)
635{
636 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, flags,
637 OVL_COPY);
638}
639
640static loff_t ovl_remap_file_range(struct file *file_in, loff_t pos_in,
641 struct file *file_out, loff_t pos_out,
642 loff_t len, unsigned int remap_flags)
643{
644 enum ovl_copyop op;
645
646 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
647 return -EINVAL;
648
649 if (remap_flags & REMAP_FILE_DEDUP)
650 op = OVL_DEDUPE;
651 else
652 op = OVL_CLONE;
653
654 /*
655 * Don't copy up because of a dedupe request, this wouldn't make sense
656 * most of the time (data would be duplicated instead of deduplicated).
657 */
658 if (op == OVL_DEDUPE &&
659 (!ovl_inode_upper(file_inode(file_in)) ||
660 !ovl_inode_upper(file_inode(file_out))))
661 return -EPERM;
662
663 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len,
664 remap_flags, op);
665}
666
667static int ovl_flush(struct file *file, fl_owner_t id)
668{
669 struct fd real;
670 const struct cred *old_cred;
671 int err;
672
673 err = ovl_real_fdget(file, &real);
674 if (err)
675 return err;
676
677 if (real.file->f_op->flush) {
678 old_cred = ovl_override_creds(file_inode(file)->i_sb);
679 err = real.file->f_op->flush(real.file, id);
680 revert_creds(old_cred);
681 }
682 fdput(real);
683
684 return err;
685}
686
687const struct file_operations ovl_file_operations = {
688 .open = ovl_open,
689 .release = ovl_release,
690 .llseek = ovl_llseek,
691 .read_iter = ovl_read_iter,
692 .write_iter = ovl_write_iter,
693 .fsync = ovl_fsync,
694 .mmap = ovl_mmap,
695 .fallocate = ovl_fallocate,
696 .fadvise = ovl_fadvise,
697 .flush = ovl_flush,
698 .splice_read = generic_file_splice_read,
699 .splice_write = ovl_splice_write,
700
701 .copy_file_range = ovl_copy_file_range,
702 .remap_file_range = ovl_remap_file_range,
703};
704
705int __init ovl_aio_request_cache_init(void)
706{
707 ovl_aio_request_cachep = kmem_cache_create("ovl_aio_req",
708 sizeof(struct ovl_aio_req),
709 0, SLAB_HWCACHE_ALIGN, NULL);
710 if (!ovl_aio_request_cachep)
711 return -ENOMEM;
712
713 return 0;
714}
715
716void ovl_aio_request_cache_destroy(void)
717{
718 kmem_cache_destroy(ovl_aio_request_cachep);
719}