blob: a4acd84591d48274c8505b2c7843244b11ff40d1 [file] [log] [blame]
Miklos Szeredid1d04ef2018-07-18 15:44:41 +02001/*
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>
Miklos Szeredidab5ca82018-07-18 15:44:42 +020011#include <linux/mount.h>
Miklos Szeredid1d04ef2018-07-18 15:44:41 +020012#include <linux/xattr.h>
Miklos Szeredi16914e62018-07-18 15:44:41 +020013#include <linux/uio.h>
Miklos Szeredid1d04ef2018-07-18 15:44:41 +020014#include "overlayfs.h"
15
Vivek Goyal8c444d22018-05-11 11:49:31 -040016static 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)
Miklos Szeredid1d04ef2018-07-18 15:44:41 +020028{
29 struct inode *inode = file_inode(file);
Miklos Szeredid1d04ef2018-07-18 15:44:41 +020030 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",
Vivek Goyal8c444d22018-05-11 11:49:31 -040039 file, file, ovl_whatisit(inode, realinode), file->f_flags,
Miklos Szeredid1d04ef2018-07-18 15:44:41 +020040 realfile, IS_ERR(realfile) ? 0 : realfile->f_flags);
41
42 return realfile;
43}
44
Miklos Szeredi2ef66b82018-07-18 15:44:41 +020045#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
Vivek Goyal8c444d22018-05-11 11:49:31 -040083static int ovl_real_fdget_meta(const struct file *file, struct fd *real,
84 bool allow_meta)
Miklos Szeredi2ef66b82018-07-18 15:44:41 +020085{
86 struct inode *inode = file_inode(file);
Vivek Goyal8c444d22018-05-11 11:49:31 -040087 struct inode *realinode;
Miklos Szeredi2ef66b82018-07-18 15:44:41 +020088
89 real->flags = 0;
90 real->file = file->private_data;
91
Vivek Goyal8c444d22018-05-11 11:49:31 -040092 if (allow_meta)
93 realinode = ovl_inode_real(inode);
94 else
95 realinode = ovl_inode_realdata(inode);
96
Miklos Szeredi2ef66b82018-07-18 15:44:41 +020097 /* Has it been copied up since we'd opened it? */
Vivek Goyal8c444d22018-05-11 11:49:31 -040098 if (unlikely(file_inode(real->file) != realinode)) {
Miklos Szeredi2ef66b82018-07-18 15:44:41 +020099 real->flags = FDPUT_FPUT;
Vivek Goyal8c444d22018-05-11 11:49:31 -0400100 real->file = ovl_open_realfile(file, realinode);
Miklos Szeredi2ef66b82018-07-18 15:44:41 +0200101
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
Vivek Goyal8c444d22018-05-11 11:49:31 -0400112static int ovl_real_fdget(const struct file *file, struct fd *real)
113{
114 return ovl_real_fdget_meta(file, real, false);
115}
116
Miklos Szeredid1d04ef2018-07-18 15:44:41 +0200117static 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
Vivek Goyal8c444d22018-05-11 11:49:31 -0400130 realfile = ovl_open_realfile(file, ovl_inode_realdata(inode));
Miklos Szeredid1d04ef2018-07-18 15:44:41 +0200131 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
Miklos Szeredi16914e62018-07-18 15:44:41 +0200155static 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
Miklos Szeredi2a92e072018-07-18 15:44:41 +0200220static 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);
243 ret = vfs_iter_write(real.file, iter, &iocb->ki_pos,
244 ovl_iocb_to_rwf(iocb));
245 revert_creds(old_cred);
246
247 /* Update size */
248 ovl_copyattr(ovl_inode_real(inode), inode);
249
250 fdput(real);
251
252out_unlock:
253 inode_unlock(inode);
254
255 return ret;
256}
257
Miklos Szeredide30dfd2018-07-18 15:44:42 +0200258static int ovl_fsync(struct file *file, loff_t start, loff_t end, int datasync)
259{
260 struct fd real;
261 const struct cred *old_cred;
262 int ret;
263
Vivek Goyal8c444d22018-05-11 11:49:31 -0400264 ret = ovl_real_fdget_meta(file, &real, !datasync);
Miklos Szeredide30dfd2018-07-18 15:44:42 +0200265 if (ret)
266 return ret;
267
268 /* Don't sync lower file for fear of receiving EROFS error */
269 if (file_inode(real.file) == ovl_inode_upper(file_inode(file))) {
270 old_cred = ovl_override_creds(file_inode(file)->i_sb);
271 ret = vfs_fsync_range(real.file, start, end, datasync);
272 revert_creds(old_cred);
273 }
274
275 fdput(real);
276
277 return ret;
278}
279
Miklos Szeredi2f502832018-07-18 15:44:42 +0200280static int ovl_mmap(struct file *file, struct vm_area_struct *vma)
281{
282 struct file *realfile = file->private_data;
283 const struct cred *old_cred;
284 int ret;
285
286 if (!realfile->f_op->mmap)
287 return -ENODEV;
288
289 if (WARN_ON(file != vma->vm_file))
290 return -EIO;
291
292 vma->vm_file = get_file(realfile);
293
294 old_cred = ovl_override_creds(file_inode(file)->i_sb);
295 ret = call_mmap(vma->vm_file, vma);
296 revert_creds(old_cred);
297
298 if (ret) {
299 /* Drop reference count from new vm_file value */
300 fput(realfile);
301 } else {
302 /* Drop reference count from previous vm_file value */
303 fput(file);
304 }
305
306 ovl_file_accessed(file);
307
308 return ret;
309}
310
Miklos Szerediaab88482018-07-18 15:44:42 +0200311static long ovl_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
312{
313 struct inode *inode = file_inode(file);
314 struct fd real;
315 const struct cred *old_cred;
316 int ret;
317
318 ret = ovl_real_fdget(file, &real);
319 if (ret)
320 return ret;
321
322 old_cred = ovl_override_creds(file_inode(file)->i_sb);
323 ret = vfs_fallocate(real.file, mode, offset, len);
324 revert_creds(old_cred);
325
326 /* Update size */
327 ovl_copyattr(ovl_inode_real(inode), inode);
328
329 fdput(real);
330
331 return ret;
332}
333
Miklos Szeredidab5ca82018-07-18 15:44:42 +0200334static long ovl_real_ioctl(struct file *file, unsigned int cmd,
335 unsigned long arg)
336{
337 struct fd real;
338 const struct cred *old_cred;
339 long ret;
340
341 ret = ovl_real_fdget(file, &real);
342 if (ret)
343 return ret;
344
345 old_cred = ovl_override_creds(file_inode(file)->i_sb);
346 ret = vfs_ioctl(real.file, cmd, arg);
347 revert_creds(old_cred);
348
349 fdput(real);
350
351 return ret;
352}
353
354static long ovl_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
355{
356 long ret;
357 struct inode *inode = file_inode(file);
358
359 switch (cmd) {
360 case FS_IOC_GETFLAGS:
361 ret = ovl_real_ioctl(file, cmd, arg);
362 break;
363
364 case FS_IOC_SETFLAGS:
365 if (!inode_owner_or_capable(inode))
366 return -EACCES;
367
368 ret = mnt_want_write_file(file);
369 if (ret)
370 return ret;
371
Vivek Goyal935a0742018-05-11 11:49:33 -0400372 ret = ovl_copy_up_with_data(file_dentry(file));
Miklos Szeredidab5ca82018-07-18 15:44:42 +0200373 if (!ret) {
374 ret = ovl_real_ioctl(file, cmd, arg);
375
376 inode_lock(inode);
377 ovl_copyflags(ovl_inode_real(inode), inode);
378 inode_unlock(inode);
379 }
380
381 mnt_drop_write_file(file);
382 break;
383
384 default:
385 ret = -ENOTTY;
386 }
387
388 return ret;
389}
390
391static long ovl_compat_ioctl(struct file *file, unsigned int cmd,
392 unsigned long arg)
393{
394 switch (cmd) {
395 case FS_IOC32_GETFLAGS:
396 cmd = FS_IOC_GETFLAGS;
397 break;
398
399 case FS_IOC32_SETFLAGS:
400 cmd = FS_IOC_SETFLAGS;
401 break;
402
403 default:
404 return -ENOIOCTLCMD;
405 }
406
407 return ovl_ioctl(file, cmd, arg);
408}
409
Miklos Szeredi8ede2052018-07-18 15:44:42 +0200410enum ovl_copyop {
411 OVL_COPY,
412 OVL_CLONE,
413 OVL_DEDUPE,
414};
415
416static ssize_t ovl_copyfile(struct file *file_in, loff_t pos_in,
417 struct file *file_out, loff_t pos_out,
418 u64 len, unsigned int flags, enum ovl_copyop op)
419{
420 struct inode *inode_out = file_inode(file_out);
421 struct fd real_in, real_out;
422 const struct cred *old_cred;
423 ssize_t ret;
424
425 ret = ovl_real_fdget(file_out, &real_out);
426 if (ret)
427 return ret;
428
429 ret = ovl_real_fdget(file_in, &real_in);
430 if (ret) {
431 fdput(real_out);
432 return ret;
433 }
434
435 old_cred = ovl_override_creds(file_inode(file_out)->i_sb);
436 switch (op) {
437 case OVL_COPY:
438 ret = vfs_copy_file_range(real_in.file, pos_in,
439 real_out.file, pos_out, len, flags);
440 break;
441
442 case OVL_CLONE:
443 ret = vfs_clone_file_range(real_in.file, pos_in,
444 real_out.file, pos_out, len);
445 break;
446
447 case OVL_DEDUPE:
448 ret = vfs_dedupe_file_range_one(real_in.file, pos_in,
449 real_out.file, pos_out, len);
450 break;
451 }
452 revert_creds(old_cred);
453
454 /* Update size */
455 ovl_copyattr(ovl_inode_real(inode_out), inode_out);
456
457 fdput(real_in);
458 fdput(real_out);
459
460 return ret;
461}
462
463static ssize_t ovl_copy_file_range(struct file *file_in, loff_t pos_in,
464 struct file *file_out, loff_t pos_out,
465 size_t len, unsigned int flags)
466{
467 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, flags,
468 OVL_COPY);
469}
470
471static int ovl_clone_file_range(struct file *file_in, loff_t pos_in,
472 struct file *file_out, loff_t pos_out, u64 len)
473{
474 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, 0,
475 OVL_CLONE);
476}
477
478static int ovl_dedupe_file_range(struct file *file_in, loff_t pos_in,
479 struct file *file_out, loff_t pos_out, u64 len)
480{
481 /*
482 * Don't copy up because of a dedupe request, this wouldn't make sense
483 * most of the time (data would be duplicated instead of deduplicated).
484 */
485 if (!ovl_inode_upper(file_inode(file_in)) ||
486 !ovl_inode_upper(file_inode(file_out)))
487 return -EPERM;
488
489 return ovl_copyfile(file_in, pos_in, file_out, pos_out, len, 0,
490 OVL_DEDUPE);
491}
492
Miklos Szeredid1d04ef2018-07-18 15:44:41 +0200493const struct file_operations ovl_file_operations = {
494 .open = ovl_open,
495 .release = ovl_release,
496 .llseek = ovl_llseek,
Miklos Szeredi16914e62018-07-18 15:44:41 +0200497 .read_iter = ovl_read_iter,
Miklos Szeredi2a92e072018-07-18 15:44:41 +0200498 .write_iter = ovl_write_iter,
Miklos Szeredide30dfd2018-07-18 15:44:42 +0200499 .fsync = ovl_fsync,
Miklos Szeredi2f502832018-07-18 15:44:42 +0200500 .mmap = ovl_mmap,
Miklos Szerediaab88482018-07-18 15:44:42 +0200501 .fallocate = ovl_fallocate,
Miklos Szeredidab5ca82018-07-18 15:44:42 +0200502 .unlocked_ioctl = ovl_ioctl,
503 .compat_ioctl = ovl_compat_ioctl,
Miklos Szeredi8ede2052018-07-18 15:44:42 +0200504
505 .copy_file_range = ovl_copy_file_range,
506 .clone_file_range = ovl_clone_file_range,
507 .dedupe_file_range = ovl_dedupe_file_range,
Miklos Szeredid1d04ef2018-07-18 15:44:41 +0200508};