]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/ocfs2/mmap.c
Merge tag 'for-linus-5.10b-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-hirsute-kernel.git] / fs / ocfs2 / mmap.c
CommitLineData
328970de 1// SPDX-License-Identifier: GPL-2.0-or-later
ccd979bd
MF
2/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * mmap.c
6 *
7 * Code to deal with the mess that is clustered mmap.
8 *
9 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
ccd979bd
MF
10 */
11
12#include <linux/fs.h>
13#include <linux/types.h>
ccd979bd
MF
14#include <linux/highmem.h>
15#include <linux/pagemap.h>
16#include <linux/uio.h>
17#include <linux/signal.h>
18#include <linux/rbtree.h>
19
ccd979bd
MF
20#include <cluster/masklog.h>
21
22#include "ocfs2.h"
23
7307de80 24#include "aops.h"
ccd979bd
MF
25#include "dlmglue.h"
26#include "file.h"
27#include "inode.h"
28#include "mmap.h"
e4b963f1 29#include "super.h"
614a9e84 30#include "ocfs2_trace.h"
ccd979bd 31
7307de80 32
c6137fe3 33static vm_fault_t ocfs2_fault(struct vm_fault *vmf)
ccd979bd 34{
11bac800 35 struct vm_area_struct *vma = vmf->vma;
e4b963f1 36 sigset_t oldset;
c6137fe3 37 vm_fault_t ret;
ccd979bd 38
e4b963f1 39 ocfs2_block_signals(&oldset);
11bac800 40 ret = filemap_fault(vmf);
e4b963f1 41 ocfs2_unblock_signals(&oldset);
ccd979bd 42
11bac800
DJ
43 trace_ocfs2_fault(OCFS2_I(vma->vm_file->f_mapping->host)->ip_blkno,
44 vma, vmf->page, vmf->pgoff);
d0217ac0 45 return ret;
ccd979bd
MF
46}
47
c6137fe3
SJ
48static vm_fault_t __ocfs2_page_mkwrite(struct file *file,
49 struct buffer_head *di_bh, struct page *page)
7307de80 50{
c6137fe3
SJ
51 int err;
52 vm_fault_t ret = VM_FAULT_NOPAGE;
496ad9aa 53 struct inode *inode = file_inode(file);
7307de80 54 struct address_space *mapping = inode->i_mapping;
18336338 55 loff_t pos = page_offset(page);
09cbfeaf 56 unsigned int len = PAGE_SIZE;
7307de80
MF
57 pgoff_t last_index;
58 struct page *locked_page = NULL;
59 void *fsdata;
60 loff_t size = i_size_read(inode);
ccd979bd 61
09cbfeaf 62 last_index = (size - 1) >> PAGE_SHIFT;
7307de80
MF
63
64 /*
cc989e78 65 * There are cases that lead to the page no longer belonging to the
5cffff9e
WW
66 * mapping.
67 * 1) pagecache truncates locally due to memory pressure.
68 * 2) pagecache truncates when another is taking EX lock against
69 * inode lock. see ocfs2_data_convert_worker.
70 *
71 * The i_size check doesn't catch the case where nodes truncated and
72 * then re-extended the file. We'll re-check the page mapping after
73 * taking the page lock inside of ocfs2_write_begin_nolock().
74 *
75 * Let VM retry with these cases.
7307de80 76 */
5cffff9e
WW
77 if ((page->mapping != inode->i_mapping) ||
78 (!PageUptodate(page)) ||
79 (page_offset(page) >= size))
7307de80 80 goto out;
7307de80
MF
81
82 /*
83 * Call ocfs2_write_begin() and ocfs2_write_end() to take
84 * advantage of the allocation code there. We pass a write
85 * length of the whole page (chopped to i_size) to make sure
86 * the whole thing is allocated.
87 *
88 * Since we know the page is up to date, we don't have to
89 * worry about ocfs2_write_begin() skipping some buffer reads
90 * because the "write" would invalidate their data.
91 */
92 if (page->index == last_index)
09cbfeaf 93 len = ((size - 1) & ~PAGE_MASK) + 1;
7307de80 94
c6137fe3 95 err = ocfs2_write_begin_nolock(mapping, pos, len, OCFS2_WRITE_MMAP,
c1ad1e3c 96 &locked_page, &fsdata, di_bh, page);
c6137fe3
SJ
97 if (err) {
98 if (err != -ENOSPC)
99 mlog_errno(err);
100 ret = vmf_error(err);
7307de80
MF
101 goto out;
102 }
103
5cffff9e
WW
104 if (!locked_page) {
105 ret = VM_FAULT_NOPAGE;
7307de80
MF
106 goto out;
107 }
c6137fe3
SJ
108 err = ocfs2_write_end_nolock(mapping, pos, len, len, fsdata);
109 BUG_ON(err != len);
5cffff9e 110 ret = VM_FAULT_LOCKED;
7307de80
MF
111out:
112 return ret;
113}
114
c6137fe3 115static vm_fault_t ocfs2_page_mkwrite(struct vm_fault *vmf)
ccd979bd 116{
c2ec175c 117 struct page *page = vmf->page;
11bac800 118 struct inode *inode = file_inode(vmf->vma->vm_file);
7307de80 119 struct buffer_head *di_bh = NULL;
e4b963f1 120 sigset_t oldset;
c6137fe3
SJ
121 int err;
122 vm_fault_t ret;
7307de80 123
fef6925c 124 sb_start_pagefault(inode->i_sb);
e4b963f1 125 ocfs2_block_signals(&oldset);
7307de80
MF
126
127 /*
128 * The cluster locks taken will block a truncate from another
129 * node. Taking the data lock will also ensure that we don't
130 * attempt page truncation as part of a downconvert.
131 */
c6137fe3
SJ
132 err = ocfs2_inode_lock(inode, &di_bh, 1);
133 if (err < 0) {
134 mlog_errno(err);
135 ret = vmf_error(err);
7307de80
MF
136 goto out;
137 }
25899dee 138
89488984 139 /*
7307de80
MF
140 * The alloc sem should be enough to serialize with
141 * ocfs2_truncate_file() changing i_size as well as any thread
142 * modifying the inode btree.
89488984 143 */
7307de80
MF
144 down_write(&OCFS2_I(inode)->ip_alloc_sem);
145
11bac800 146 ret = __ocfs2_page_mkwrite(vmf->vma->vm_file, di_bh, page);
7307de80 147
7307de80
MF
148 up_write(&OCFS2_I(inode)->ip_alloc_sem);
149
150 brelse(di_bh);
e63aecb6 151 ocfs2_inode_unlock(inode, 1);
7307de80
MF
152
153out:
e4b963f1 154 ocfs2_unblock_signals(&oldset);
fef6925c 155 sb_end_pagefault(inode->i_sb);
7307de80
MF
156 return ret;
157}
158
f0f37e2f 159static const struct vm_operations_struct ocfs2_file_vm_ops = {
54cb8821 160 .fault = ocfs2_fault,
7307de80
MF
161 .page_mkwrite = ocfs2_page_mkwrite,
162};
163
164int ocfs2_mmap(struct file *file, struct vm_area_struct *vma)
165{
166 int ret = 0, lock_level = 0;
167
496ad9aa 168 ret = ocfs2_inode_lock_atime(file_inode(file),
c4c2416a 169 file->f_path.mnt, &lock_level, 1);
25899dee
TY
170 if (ret < 0) {
171 mlog_errno(ret);
172 goto out;
173 }
496ad9aa 174 ocfs2_inode_unlock(file_inode(file), lock_level);
25899dee 175out:
ccd979bd
MF
176 vma->vm_ops = &ocfs2_file_vm_ops;
177 return 0;
178}
179