blob: 391d2a7d10e9ed0a48c8d064d1db7b44ebb70f2b [file] [log] [blame]
Daniel Campello35c9e242015-07-20 16:23:50 -07001/*
2 * fs/sdcardfs/mmap.c
3 *
4 * Copyright (c) 2013 Samsung Electronics Co. Ltd
5 * Authors: Daeho Jeong, Woojoong Lee, Seunghwan Hyun,
6 * Sunghwan Yun, Sungjong Seo
7 *
8 * This program has been developed as a stackable file system based on
9 * the WrapFS which written by
10 *
11 * Copyright (c) 1998-2011 Erez Zadok
12 * Copyright (c) 2009 Shrikar Archak
13 * Copyright (c) 2003-2011 Stony Brook University
14 * Copyright (c) 2003-2011 The Research Foundation of SUNY
15 *
16 * This file is dual licensed. It may be redistributed and/or modified
17 * under the terms of the Apache 2.0 License OR version 2 of the GNU
18 * General Public License.
19 */
20
21#include "sdcardfs.h"
22
23static int sdcardfs_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
24{
25 int err;
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070026 struct file *file;
Daniel Campello35c9e242015-07-20 16:23:50 -070027 const struct vm_operations_struct *lower_vm_ops;
Daniel Campello35c9e242015-07-20 16:23:50 -070028
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070029 file = (struct file *)vma->vm_private_data;
Daniel Campello35c9e242015-07-20 16:23:50 -070030 lower_vm_ops = SDCARDFS_F(file)->lower_vm_ops;
31 BUG_ON(!lower_vm_ops);
32
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070033 err = lower_vm_ops->fault(vma, vmf);
Daniel Campello35c9e242015-07-20 16:23:50 -070034 return err;
35}
36
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070037static void sdcardfs_vm_open(struct vm_area_struct *vma)
38{
39 struct file *file = (struct file *)vma->vm_private_data;
40
41 get_file(file);
42}
43
44static void sdcardfs_vm_close(struct vm_area_struct *vma)
45{
46 struct file *file = (struct file *)vma->vm_private_data;
47
48 fput(file);
49}
50
Daniel Rosenberg055fc872017-02-24 15:41:48 -080051static int sdcardfs_page_mkwrite(struct vm_area_struct *vma,
52 struct vm_fault *vmf)
53{
54 int err = 0;
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070055 struct file *file;
Daniel Rosenberg055fc872017-02-24 15:41:48 -080056 const struct vm_operations_struct *lower_vm_ops;
Daniel Rosenberg055fc872017-02-24 15:41:48 -080057
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070058 file = (struct file *)vma->vm_private_data;
Daniel Rosenberg055fc872017-02-24 15:41:48 -080059 lower_vm_ops = SDCARDFS_F(file)->lower_vm_ops;
60 BUG_ON(!lower_vm_ops);
61 if (!lower_vm_ops->page_mkwrite)
62 goto out;
63
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070064 err = lower_vm_ops->page_mkwrite(vma, vmf);
Daniel Rosenberg055fc872017-02-24 15:41:48 -080065out:
66 return err;
67}
68
Amit Pundir71f1b592016-06-07 16:30:56 +053069static ssize_t sdcardfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Daniel Campello35c9e242015-07-20 16:23:50 -070070{
71 /*
Daniel Rosenberg85626b42017-02-24 15:49:45 -080072 * This function should never be called directly. We need it
73 * to exist, to get past a check in open_check_o_direct(),
74 * which is called from do_last().
Daniel Campello35c9e242015-07-20 16:23:50 -070075 */
Daniel Rosenberg85626b42017-02-24 15:49:45 -080076 return -EINVAL;
Daniel Campello35c9e242015-07-20 16:23:50 -070077}
78
Daniel Campello35c9e242015-07-20 16:23:50 -070079const struct address_space_operations sdcardfs_aops = {
Daniel Campello35c9e242015-07-20 16:23:50 -070080 .direct_IO = sdcardfs_direct_IO,
81};
82
83const struct vm_operations_struct sdcardfs_vm_ops = {
84 .fault = sdcardfs_fault,
Daniel Rosenberg055fc872017-02-24 15:41:48 -080085 .page_mkwrite = sdcardfs_page_mkwrite,
Daniel Rosenberg2d82e2e2017-04-10 20:54:30 -070086 .open = sdcardfs_vm_open,
87 .close = sdcardfs_vm_close,
Daniel Campello35c9e242015-07-20 16:23:50 -070088};