Whamcloud - gitweb
LU-16160 llite: SIGBUS is possible on a race with page reclaim
[fs/lustre-release.git] / lustre / llite / vvp_page.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Implementation of cl_page for VVP layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_LLITE
38
39 #include <linux/atomic.h>
40 #include <linux/bitops.h>
41 #include <linux/mm.h>
42 #include <linux/mutex.h>
43 #include <linux/page-flags.h>
44 #include <linux/pagemap.h>
45
46 #include <libcfs/libcfs.h>
47 #include "llite_internal.h"
48 #include "vvp_internal.h"
49
50 /*****************************************************************************
51  *
52  * Page operations.
53  *
54  */
55 static void vvp_page_discard(const struct lu_env *env,
56                              const struct cl_page_slice *slice,
57                              struct cl_io *unused)
58 {
59         struct cl_page *cp = slice->cpl_page;
60         struct page *vmpage = cp->cp_vmpage;
61
62         if (cp->cp_defer_uptodate && !cp->cp_ra_used && vmpage->mapping != NULL)
63                 ll_ra_stats_inc(vmpage->mapping->host, RA_STAT_DISCARDED);
64 }
65
66 static void vvp_page_delete(const struct lu_env *env,
67                             const struct cl_page_slice *slice)
68 {
69         struct cl_page *cp = slice->cpl_page;
70
71         if (cp->cp_type == CPT_CACHEABLE) {
72                 struct page *vmpage = cp->cp_vmpage;
73                 struct inode *inode = vmpage->mapping->host;
74
75                 LASSERT(PageLocked(vmpage));
76                 LASSERT((struct cl_page *)vmpage->private == cp);
77
78                 /* Drop the reference count held in vvp_page_init */
79                 refcount_dec(&cp->cp_ref);
80
81                 ClearPagePrivate(vmpage);
82                 vmpage->private = 0;
83
84                 /* clearpageuptodate prevents the page being read by the
85                  * kernel after it has been deleted from Lustre, which avoids
86                  * potential stale data reads.  The seqlock allows us to see
87                  * that a page was potentially deleted and catch the resulting
88                  * SIGBUS - see ll_filemap_fault() (LU-16160) */
89                 write_seqlock(&ll_i2info(inode)->lli_page_inv_lock);
90                 ClearPageUptodate(vmpage);
91                 write_sequnlock(&ll_i2info(inode)->lli_page_inv_lock);
92
93                 /*
94                  * The reference from vmpage to cl_page is removed,
95                  * but the reference back is still here. It is removed
96                  * later in cl_page_free().
97                  */
98         }
99 }
100
101 /**
102  * Handles page transfer errors at VM level.
103  *
104  * This takes inode as a separate argument, because inode on which error is to
105  * be set can be different from \a vmpage inode in case of direct-io.
106  */
107 static void vvp_vmpage_error(struct inode *inode, struct page *vmpage,
108                              int ioret)
109 {
110         struct vvp_object *obj = cl_inode2vvp(inode);
111
112         if (ioret == 0) {
113                 ClearPageError(vmpage);
114                 obj->vob_discard_page_warned = 0;
115         } else {
116                 SetPageError(vmpage);
117                 if (ioret == -ENOSPC)
118                         set_bit(AS_ENOSPC, &inode->i_mapping->flags);
119                 else
120                         set_bit(AS_EIO, &inode->i_mapping->flags);
121
122                 if ((ioret == -ESHUTDOWN || ioret == -EINTR ||
123                      ioret == -EIO) && obj->vob_discard_page_warned == 0) {
124                         obj->vob_discard_page_warned = 1;
125                         ll_dirty_page_discard_warn(inode, ioret);
126                 }
127         }
128 }
129
130 static void vvp_page_completion_read(const struct lu_env *env,
131                                      const struct cl_page_slice *slice,
132                                      int ioret)
133 {
134         struct cl_page *cp = slice->cpl_page;
135         struct page *vmpage = cp->cp_vmpage;
136         struct inode *inode = vvp_object_inode(cp->cp_obj);
137
138         ENTRY;
139         LASSERT(PageLocked(vmpage));
140         CL_PAGE_HEADER(D_PAGE, env, cp, "completing READ with %d\n", ioret);
141
142         if (cp->cp_defer_uptodate)
143                 ll_ra_count_put(ll_i2sbi(inode), 1);
144
145         if (ioret == 0)  {
146                 /**
147                  * cp_defer_uptodate is used for readahead page, and the
148                  * vmpage Uptodate bit is deferred to set in ll_readpage/
149                  * ll_io_read_page.
150                  */
151                 if (!cp->cp_defer_uptodate)
152                         SetPageUptodate(vmpage);
153         } else if (cp->cp_defer_uptodate) {
154                 cp->cp_defer_uptodate = 0;
155                 if (ioret == -EAGAIN) {
156                         /* mirror read failed, it needs to destroy the page
157                          * because subpage would be from wrong osc when trying
158                          * to read from a new mirror
159                          */
160                         generic_error_remove_page(vmpage->mapping, vmpage);
161                 }
162         }
163
164         if (cp->cp_sync_io == NULL)
165                 unlock_page(vmpage);
166
167         EXIT;
168 }
169
170 static void vvp_page_completion_write(const struct lu_env *env,
171                                       const struct cl_page_slice *slice,
172                                       int ioret)
173 {
174         struct cl_page *cp = slice->cpl_page;
175         struct page *vmpage = cp->cp_vmpage;
176
177         ENTRY;
178         CL_PAGE_HEADER(D_PAGE, env, cp, "completing WRITE with %d\n", ioret);
179
180         if (cp->cp_sync_io != NULL) {
181                 LASSERT(PageLocked(vmpage));
182                 LASSERT(!PageWriteback(vmpage));
183         } else {
184                 LASSERT(PageWriteback(vmpage));
185                 /*
186                  * Only mark the page error only when it's an async write
187                  * because applications won't wait for IO to finish.
188                  */
189                 vvp_vmpage_error(vvp_object_inode(cp->cp_obj), vmpage, ioret);
190
191                 end_page_writeback(vmpage);
192         }
193         EXIT;
194 }
195
196 static const struct cl_page_operations vvp_page_ops = {
197         .cpo_delete        = vvp_page_delete,
198         .cpo_discard       = vvp_page_discard,
199         .io = {
200                 [CRT_READ] = {
201                         .cpo_completion = vvp_page_completion_read,
202                 },
203                 [CRT_WRITE] = {
204                         .cpo_completion = vvp_page_completion_write,
205                 },
206         },
207 };
208
209 static const struct cl_page_operations vvp_transient_page_ops = {
210 };
211
212 int vvp_page_init(const struct lu_env *env, struct cl_object *obj,
213                 struct cl_page *page, pgoff_t index)
214 {
215         struct cl_page_slice *cpl = cl_object_page_slice(obj, page);
216         struct page *vmpage = page->cp_vmpage;
217
218         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
219
220         if (page->cp_type == CPT_TRANSIENT) {
221                 /* DIO pages are referenced by userspace, we don't need to take
222                  * a reference on them. (contrast with get_page() call above)
223                  */
224                 cl_page_slice_add(page, cpl, obj,
225                                   &vvp_transient_page_ops);
226         } else {
227                 get_page(vmpage);
228                 /* in cache, decref in cl_page_delete() */
229                 refcount_inc(&page->cp_ref);
230                 SetPagePrivate(vmpage);
231                 vmpage->private = (unsigned long)page;
232                 cl_page_slice_add(page, cpl, obj, &vvp_page_ops);
233         }
234
235         return 0;
236 }