blob: 7f5b73528663fb77d3645ca520eabe18e9cc602b [file] [log] [blame]
Boaz Harroshe8062712008-10-27 18:37:02 +02001/*
2 * Copyright (C) 2005, 2006
Boaz Harrosh27d2e142009-06-14 17:23:09 +03003 * Avishay Traeger (avishay@gmail.com)
Boaz Harroshe8062712008-10-27 18:37:02 +02004 * Copyright (C) 2008, 2009
Boaz Harroshaa281ac2014-10-19 19:38:58 +03005 * Boaz Harrosh <ooo@electrozaur.com>
Boaz Harroshe8062712008-10-27 18:37:02 +02006 *
7 * Copyrights for code taken from ext2:
8 * Copyright (C) 1992, 1993, 1994, 1995
9 * Remy Card (card@masi.ibp.fr)
10 * Laboratoire MASI - Institut Blaise Pascal
11 * Universite Pierre et Marie Curie (Paris VI)
12 * from
13 * linux/fs/minix/inode.c
14 * Copyright (C) 1991, 1992 Linus Torvalds
15 *
16 * This file is part of exofs.
17 *
18 * exofs is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation. Since it is based on ext2, and the only
21 * valid version of GPL for the Linux kernel is version 2, the only valid
22 * version of GPL for exofs is version 2.
23 *
24 * exofs is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with exofs; if not, write to the Free Software
31 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 */
33
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Boaz Harroshe8062712008-10-27 18:37:02 +020035
36#include "exofs.h"
37
Boaz Harroshfe33cc12009-11-01 18:28:14 +020038#define EXOFS_DBGMSG2(M...) do {} while (0)
39
Boaz Harrosh8ff660a2011-08-06 19:26:31 -070040unsigned exofs_max_io_pages(struct ore_layout *layout,
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -040041 unsigned expected_pages)
42{
Boaz Harroshbe388f32012-08-02 14:59:57 +030043 unsigned pages = min_t(unsigned, expected_pages,
44 layout->max_io_length / PAGE_SIZE);
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -040045
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -040046 return pages;
47}
48
Boaz Harroshbeaec072008-10-27 19:31:34 +020049struct page_collect {
50 struct exofs_sb_info *sbi;
Boaz Harroshbeaec072008-10-27 19:31:34 +020051 struct inode *inode;
52 unsigned expected_pages;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -070053 struct ore_io_state *ios;
Boaz Harroshbeaec072008-10-27 19:31:34 +020054
Boaz Harrosh86093aa2010-01-28 18:24:06 +020055 struct page **pages;
56 unsigned alloc_pages;
Boaz Harroshbeaec072008-10-27 19:31:34 +020057 unsigned nr_pages;
58 unsigned long length;
59 loff_t pg_first; /* keep 64bit also in 32-arches */
Boaz Harroshf17b1f92010-10-07 13:37:51 -040060 bool read_4_write; /* This means two things: that the read is sync
61 * And the pages should not be unlocked.
62 */
Boaz Harroshdd296612011-10-12 15:42:07 +020063 struct page *that_locked_page;
Boaz Harroshbeaec072008-10-27 19:31:34 +020064};
65
66static void _pcol_init(struct page_collect *pcol, unsigned expected_pages,
Boaz Harrosh06886a52009-11-08 14:54:08 +020067 struct inode *inode)
Boaz Harroshbeaec072008-10-27 19:31:34 +020068{
69 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
Boaz Harroshbeaec072008-10-27 19:31:34 +020070
71 pcol->sbi = sbi;
Boaz Harroshbeaec072008-10-27 19:31:34 +020072 pcol->inode = inode;
73 pcol->expected_pages = expected_pages;
74
Boaz Harrosh06886a52009-11-08 14:54:08 +020075 pcol->ios = NULL;
Boaz Harrosh86093aa2010-01-28 18:24:06 +020076 pcol->pages = NULL;
77 pcol->alloc_pages = 0;
Boaz Harroshbeaec072008-10-27 19:31:34 +020078 pcol->nr_pages = 0;
79 pcol->length = 0;
80 pcol->pg_first = -1;
Boaz Harroshf17b1f92010-10-07 13:37:51 -040081 pcol->read_4_write = false;
Boaz Harroshdd296612011-10-12 15:42:07 +020082 pcol->that_locked_page = NULL;
Boaz Harroshbeaec072008-10-27 19:31:34 +020083}
84
85static void _pcol_reset(struct page_collect *pcol)
86{
87 pcol->expected_pages -= min(pcol->nr_pages, pcol->expected_pages);
88
Boaz Harrosh86093aa2010-01-28 18:24:06 +020089 pcol->pages = NULL;
90 pcol->alloc_pages = 0;
Boaz Harroshbeaec072008-10-27 19:31:34 +020091 pcol->nr_pages = 0;
92 pcol->length = 0;
93 pcol->pg_first = -1;
Boaz Harrosh06886a52009-11-08 14:54:08 +020094 pcol->ios = NULL;
Boaz Harroshdd296612011-10-12 15:42:07 +020095 pcol->that_locked_page = NULL;
Boaz Harroshbeaec072008-10-27 19:31:34 +020096
97 /* this is probably the end of the loop but in writes
98 * it might not end here. don't be left with nothing
99 */
100 if (!pcol->expected_pages)
Boaz Harroshbe388f32012-08-02 14:59:57 +0300101 pcol->expected_pages =
102 exofs_max_io_pages(&pcol->sbi->layout, ~0);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200103}
104
105static int pcol_try_alloc(struct page_collect *pcol)
106{
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -0400107 unsigned pages;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200108
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200109 /* TODO: easily support bio chaining */
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -0400110 pages = exofs_max_io_pages(&pcol->sbi->layout, pcol->expected_pages);
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200111
Boaz Harroshbeaec072008-10-27 19:31:34 +0200112 for (; pages; pages >>= 1) {
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200113 pcol->pages = kmalloc(pages * sizeof(struct page *),
114 GFP_KERNEL);
115 if (likely(pcol->pages)) {
116 pcol->alloc_pages = pages;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200117 return 0;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200118 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200119 }
120
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200121 EXOFS_ERR("Failed to kmalloc expected_pages=%u\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200122 pcol->expected_pages);
123 return -ENOMEM;
124}
125
126static void pcol_free(struct page_collect *pcol)
127{
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200128 kfree(pcol->pages);
129 pcol->pages = NULL;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200130
131 if (pcol->ios) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700132 ore_put_io_state(pcol->ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200133 pcol->ios = NULL;
134 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200135}
136
137static int pcol_add_page(struct page_collect *pcol, struct page *page,
138 unsigned len)
139{
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200140 if (unlikely(pcol->nr_pages >= pcol->alloc_pages))
Boaz Harroshbeaec072008-10-27 19:31:34 +0200141 return -ENOMEM;
142
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200143 pcol->pages[pcol->nr_pages++] = page;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200144 pcol->length += len;
145 return 0;
146}
147
Boaz Harrosh154a9302011-08-26 21:00:32 -0700148enum {PAGE_WAS_NOT_IN_IO = 17};
Boaz Harroshbeaec072008-10-27 19:31:34 +0200149static int update_read_page(struct page *page, int ret)
150{
Boaz Harrosh154a9302011-08-26 21:00:32 -0700151 switch (ret) {
152 case 0:
Boaz Harroshbeaec072008-10-27 19:31:34 +0200153 /* Everything is OK */
154 SetPageUptodate(page);
155 if (PageError(page))
156 ClearPageError(page);
Boaz Harrosh154a9302011-08-26 21:00:32 -0700157 break;
158 case -EFAULT:
Boaz Harroshbeaec072008-10-27 19:31:34 +0200159 /* In this case we were trying to read something that wasn't on
160 * disk yet - return a page full of zeroes. This should be OK,
161 * because the object should be empty (if there was a write
162 * before this read, the read would be waiting with the page
163 * locked */
164 clear_highpage(page);
165
166 SetPageUptodate(page);
167 if (PageError(page))
168 ClearPageError(page);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200169 EXOFS_DBGMSG("recovered read error\n");
Boaz Harrosh154a9302011-08-26 21:00:32 -0700170 /* fall through */
171 case PAGE_WAS_NOT_IN_IO:
172 ret = 0; /* recovered error */
173 break;
174 default:
Boaz Harroshbeaec072008-10-27 19:31:34 +0200175 SetPageError(page);
Boaz Harrosh154a9302011-08-26 21:00:32 -0700176 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200177 return ret;
178}
179
180static void update_write_page(struct page *page, int ret)
181{
Boaz Harrosh154a9302011-08-26 21:00:32 -0700182 if (unlikely(ret == PAGE_WAS_NOT_IN_IO))
183 return; /* don't pass start don't collect $200 */
184
Boaz Harroshbeaec072008-10-27 19:31:34 +0200185 if (ret) {
186 mapping_set_error(page->mapping, ret);
187 SetPageError(page);
188 }
189 end_page_writeback(page);
190}
191
192/* Called at the end of reads, to optionally unlock pages and update their
193 * status.
194 */
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400195static int __readpages_done(struct page_collect *pcol)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200196{
Boaz Harroshbeaec072008-10-27 19:31:34 +0200197 int i;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200198 u64 good_bytes;
199 u64 length = 0;
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300200 int ret = ore_check_io(pcol->ios, NULL);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200201
Boaz Harrosh154a9302011-08-26 21:00:32 -0700202 if (likely(!ret)) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200203 good_bytes = pcol->length;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700204 ret = PAGE_WAS_NOT_IN_IO;
205 } else {
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300206 good_bytes = 0;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700207 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200208
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200209 EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx"
Boaz Harroshbeaec072008-10-27 19:31:34 +0200210 " length=0x%lx nr_pages=%u\n",
211 pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
212 pcol->nr_pages);
213
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200214 for (i = 0; i < pcol->nr_pages; i++) {
215 struct page *page = pcol->pages[i];
Boaz Harroshbeaec072008-10-27 19:31:34 +0200216 struct inode *inode = page->mapping->host;
217 int page_stat;
218
219 if (inode != pcol->inode)
220 continue; /* osd might add more pages at end */
221
222 if (likely(length < good_bytes))
223 page_stat = 0;
224 else
225 page_stat = ret;
226
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200227 EXOFS_DBGMSG2(" readpages_done(0x%lx, 0x%lx) %s\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200228 inode->i_ino, page->index,
229 page_stat ? "bad_bytes" : "good_bytes");
230
231 ret = update_read_page(page, page_stat);
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400232 if (!pcol->read_4_write)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200233 unlock_page(page);
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200234 length += PAGE_SIZE;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200235 }
236
237 pcol_free(pcol);
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200238 EXOFS_DBGMSG2("readpages_done END\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200239 return ret;
240}
241
242/* callback of async reads */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700243static void readpages_done(struct ore_io_state *ios, void *p)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200244{
245 struct page_collect *pcol = p;
246
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400247 __readpages_done(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200248 atomic_dec(&pcol->sbi->s_curr_pending);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200249 kfree(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200250}
251
252static void _unlock_pcol_pages(struct page_collect *pcol, int ret, int rw)
253{
Boaz Harroshbeaec072008-10-27 19:31:34 +0200254 int i;
255
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200256 for (i = 0; i < pcol->nr_pages; i++) {
257 struct page *page = pcol->pages[i];
Boaz Harroshbeaec072008-10-27 19:31:34 +0200258
259 if (rw == READ)
260 update_read_page(page, ret);
261 else
262 update_write_page(page, ret);
263
264 unlock_page(page);
265 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200266}
267
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300268static int _maybe_not_all_in_one_io(struct ore_io_state *ios,
269 struct page_collect *pcol_src, struct page_collect *pcol)
270{
271 /* length was wrong or offset was not page aligned */
272 BUG_ON(pcol_src->nr_pages < ios->nr_pages);
273
274 if (pcol_src->nr_pages > ios->nr_pages) {
275 struct page **src_page;
276 unsigned pages_less = pcol_src->nr_pages - ios->nr_pages;
277 unsigned long len_less = pcol_src->length - ios->length;
278 unsigned i;
279 int ret;
280
281 /* This IO was trimmed */
282 pcol_src->nr_pages = ios->nr_pages;
283 pcol_src->length = ios->length;
284
285 /* Left over pages are passed to the next io */
286 pcol->expected_pages += pages_less;
287 pcol->nr_pages = pages_less;
288 pcol->length = len_less;
289 src_page = pcol_src->pages + pcol_src->nr_pages;
290 pcol->pg_first = (*src_page)->index;
291
292 ret = pcol_try_alloc(pcol);
293 if (unlikely(ret))
294 return ret;
295
296 for (i = 0; i < pages_less; ++i)
297 pcol->pages[i] = *src_page++;
298
299 EXOFS_DBGMSG("Length was adjusted nr_pages=0x%x "
300 "pages_less=0x%x expected_pages=0x%x "
301 "next_offset=0x%llx next_len=0x%lx\n",
302 pcol_src->nr_pages, pages_less, pcol->expected_pages,
303 pcol->pg_first * PAGE_SIZE, pcol->length);
304 }
305 return 0;
306}
307
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400308static int read_exec(struct page_collect *pcol)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200309{
310 struct exofs_i_info *oi = exofs_i(pcol->inode);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700311 struct ore_io_state *ios;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200312 struct page_collect *pcol_copy = NULL;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200313 int ret;
314
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200315 if (!pcol->pages)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200316 return 0;
317
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200318 if (!pcol->ios) {
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300319 int ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, true,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300320 pcol->pg_first << PAGE_SHIFT,
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200321 pcol->length, &pcol->ios);
322
323 if (ret)
324 return ret;
325 }
326
327 ios = pcol->ios;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200328 ios->pages = pcol->pages;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200329
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400330 if (pcol->read_4_write) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700331 ore_read(pcol->ios);
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400332 return __readpages_done(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200333 }
334
335 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
336 if (!pcol_copy) {
337 ret = -ENOMEM;
338 goto err;
339 }
340
341 *pcol_copy = *pcol;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200342 ios->done = readpages_done;
343 ios->private = pcol_copy;
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300344
345 /* pages ownership was passed to pcol_copy */
346 _pcol_reset(pcol);
347
348 ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol);
349 if (unlikely(ret))
350 goto err;
351
352 EXOFS_DBGMSG2("read_exec(0x%lx) offset=0x%llx length=0x%llx\n",
353 pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length));
354
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700355 ret = ore_read(ios);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200356 if (unlikely(ret))
357 goto err;
358
359 atomic_inc(&pcol->sbi->s_curr_pending);
360
Boaz Harroshbeaec072008-10-27 19:31:34 +0200361 return 0;
362
363err:
Boaz Harrosh861d6662012-11-30 16:03:31 +0200364 if (!pcol_copy) /* Failed before ownership transfer */
365 pcol_copy = pcol;
366 _unlock_pcol_pages(pcol_copy, ret, READ);
367 pcol_free(pcol_copy);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200368 kfree(pcol_copy);
Boaz Harrosh861d6662012-11-30 16:03:31 +0200369
Boaz Harroshbeaec072008-10-27 19:31:34 +0200370 return ret;
371}
372
373/* readpage_strip is called either directly from readpage() or by the VFS from
374 * within read_cache_pages(), to add one more page to be read. It will try to
375 * collect as many contiguous pages as posible. If a discontinuity is
376 * encountered, or it runs out of resources, it will submit the previous segment
377 * and will start a new collection. Eventually caller must submit the last
378 * segment if present.
379 */
Sami Tolvanen39cdeb12018-03-02 09:04:53 -0800380static int __readpage_strip(struct page_collect *pcol, struct page *page)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200381{
Boaz Harroshbeaec072008-10-27 19:31:34 +0200382 struct inode *inode = pcol->inode;
383 struct exofs_i_info *oi = exofs_i(inode);
384 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300385 pgoff_t end_index = i_size >> PAGE_SHIFT;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200386 size_t len;
387 int ret;
388
Kautuk Consul0e8d96d2012-02-20 03:46:12 -0500389 BUG_ON(!PageLocked(page));
390
Boaz Harroshbeaec072008-10-27 19:31:34 +0200391 /* FIXME: Just for debugging, will be removed */
392 if (PageUptodate(page))
393 EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino,
394 page->index);
395
Boaz Harroshdd296612011-10-12 15:42:07 +0200396 pcol->that_locked_page = page;
397
Boaz Harroshbeaec072008-10-27 19:31:34 +0200398 if (page->index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300399 len = PAGE_SIZE;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200400 else if (page->index == end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300401 len = i_size & ~PAGE_MASK;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200402 else
403 len = 0;
404
405 if (!len || !obj_created(oi)) {
406 /* this will be out of bounds, or doesn't exist yet.
407 * Current page is cleared and the request is split
408 */
409 clear_highpage(page);
410
411 SetPageUptodate(page);
412 if (PageError(page))
413 ClearPageError(page);
414
Boaz Harroshf17b1f92010-10-07 13:37:51 -0400415 if (!pcol->read_4_write)
416 unlock_page(page);
Boaz Harrosha8f14182010-11-22 18:02:45 +0200417 EXOFS_DBGMSG("readpage_strip(0x%lx) empty page len=%zx "
418 "read_4_write=%d index=0x%lx end_index=0x%lx "
419 "splitting\n", inode->i_ino, len,
420 pcol->read_4_write, page->index, end_index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200421
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400422 return read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200423 }
424
425try_again:
426
427 if (unlikely(pcol->pg_first == -1)) {
428 pcol->pg_first = page->index;
429 } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
430 page->index)) {
431 /* Discontinuity detected, split the request */
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400432 ret = read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200433 if (unlikely(ret))
434 goto fail;
435 goto try_again;
436 }
437
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200438 if (!pcol->pages) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200439 ret = pcol_try_alloc(pcol);
440 if (unlikely(ret))
441 goto fail;
442 }
443
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300444 if (len != PAGE_SIZE)
445 zero_user(page, len, PAGE_SIZE - len);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200446
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200447 EXOFS_DBGMSG2(" readpage_strip(0x%lx, 0x%lx) len=0x%zx\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200448 inode->i_ino, page->index, len);
449
450 ret = pcol_add_page(pcol, page, len);
451 if (ret) {
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200452 EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p "
Boaz Harroshbeaec072008-10-27 19:31:34 +0200453 "this_len=0x%zx nr_pages=%u length=0x%lx\n",
454 page, len, pcol->nr_pages, pcol->length);
455
456 /* split the request, and start again with current page */
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400457 ret = read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200458 if (unlikely(ret))
459 goto fail;
460
461 goto try_again;
462 }
463
464 return 0;
465
466fail:
467 /* SetPageError(page); ??? */
468 unlock_page(page);
469 return ret;
470}
471
Sami Tolvanen39cdeb12018-03-02 09:04:53 -0800472static int readpage_strip(struct file *data, struct page *page)
473{
474 struct page_collect *pcol = (struct page_collect *)data;
475
476 return __readpage_strip(pcol, page);
477}
478
Boaz Harroshbeaec072008-10-27 19:31:34 +0200479static int exofs_readpages(struct file *file, struct address_space *mapping,
480 struct list_head *pages, unsigned nr_pages)
481{
482 struct page_collect pcol;
483 int ret;
484
485 _pcol_init(&pcol, nr_pages, mapping->host);
486
487 ret = read_cache_pages(mapping, pages, readpage_strip, &pcol);
488 if (ret) {
489 EXOFS_ERR("read_cache_pages => %d\n", ret);
490 return ret;
491 }
492
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300493 ret = read_exec(&pcol);
494 if (unlikely(ret))
495 return ret;
496
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400497 return read_exec(&pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200498}
499
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400500static int _readpage(struct page *page, bool read_4_write)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200501{
502 struct page_collect pcol;
503 int ret;
504
505 _pcol_init(&pcol, 1, page->mapping->host);
506
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400507 pcol.read_4_write = read_4_write;
Sami Tolvanen39cdeb12018-03-02 09:04:53 -0800508 ret = __readpage_strip(&pcol, page);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200509 if (ret) {
510 EXOFS_ERR("_readpage => %d\n", ret);
511 return ret;
512 }
513
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400514 return read_exec(&pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200515}
516
517/*
518 * We don't need the file
519 */
520static int exofs_readpage(struct file *file, struct page *page)
521{
522 return _readpage(page, false);
523}
524
Boaz Harrosh06886a52009-11-08 14:54:08 +0200525/* Callback for osd_write. All writes are asynchronous */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700526static void writepages_done(struct ore_io_state *ios, void *p)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200527{
528 struct page_collect *pcol = p;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200529 int i;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200530 u64 good_bytes;
531 u64 length = 0;
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300532 int ret = ore_check_io(ios, NULL);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200533
Boaz Harroshbeaec072008-10-27 19:31:34 +0200534 atomic_dec(&pcol->sbi->s_curr_pending);
535
Boaz Harrosh154a9302011-08-26 21:00:32 -0700536 if (likely(!ret)) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200537 good_bytes = pcol->length;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700538 ret = PAGE_WAS_NOT_IN_IO;
539 } else {
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300540 good_bytes = 0;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700541 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200542
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200543 EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx"
Boaz Harroshbeaec072008-10-27 19:31:34 +0200544 " length=0x%lx nr_pages=%u\n",
545 pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
546 pcol->nr_pages);
547
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200548 for (i = 0; i < pcol->nr_pages; i++) {
549 struct page *page = pcol->pages[i];
Boaz Harroshbeaec072008-10-27 19:31:34 +0200550 struct inode *inode = page->mapping->host;
551 int page_stat;
552
553 if (inode != pcol->inode)
554 continue; /* osd might add more pages to a bio */
555
556 if (likely(length < good_bytes))
557 page_stat = 0;
558 else
559 page_stat = ret;
560
561 update_write_page(page, page_stat);
562 unlock_page(page);
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200563 EXOFS_DBGMSG2(" writepages_done(0x%lx, 0x%lx) status=%d\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200564 inode->i_ino, page->index, page_stat);
565
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200566 length += PAGE_SIZE;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200567 }
568
569 pcol_free(pcol);
570 kfree(pcol);
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200571 EXOFS_DBGMSG2("writepages_done END\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200572}
573
Boaz Harroshdd296612011-10-12 15:42:07 +0200574static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
575{
576 struct page_collect *pcol = priv;
577 pgoff_t index = offset / PAGE_SIZE;
578
579 if (!pcol->that_locked_page ||
580 (pcol->that_locked_page->index != index)) {
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300581 struct page *page;
582 loff_t i_size = i_size_read(pcol->inode);
Boaz Harroshdd296612011-10-12 15:42:07 +0200583
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300584 if (offset >= i_size) {
585 *uptodate = true;
Boaz Harrosh19350e72014-01-14 16:26:13 +0200586 EXOFS_DBGMSG2("offset >= i_size index=0x%lx\n", index);
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300587 return ZERO_PAGE(0);
588 }
589
590 page = find_get_page(pcol->inode->i_mapping, index);
Boaz Harroshdd296612011-10-12 15:42:07 +0200591 if (!page) {
592 page = find_or_create_page(pcol->inode->i_mapping,
593 index, GFP_NOFS);
594 if (unlikely(!page)) {
595 EXOFS_DBGMSG("grab_cache_page Failed "
596 "index=0x%llx\n", _LLU(index));
597 return NULL;
598 }
599 unlock_page(page);
600 }
Hugh Dickins3066a962015-12-11 13:40:38 -0800601 *uptodate = PageUptodate(page);
Boaz Harrosh19350e72014-01-14 16:26:13 +0200602 EXOFS_DBGMSG2("index=0x%lx uptodate=%d\n", index, *uptodate);
Boaz Harroshdd296612011-10-12 15:42:07 +0200603 return page;
604 } else {
Boaz Harrosh19350e72014-01-14 16:26:13 +0200605 EXOFS_DBGMSG2("YES that_locked_page index=0x%lx\n",
Boaz Harroshdd296612011-10-12 15:42:07 +0200606 pcol->that_locked_page->index);
607 *uptodate = true;
608 return pcol->that_locked_page;
609 }
610}
611
612static void __r4w_put_page(void *priv, struct page *page)
613{
614 struct page_collect *pcol = priv;
615
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300616 if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) {
Boaz Harrosh19350e72014-01-14 16:26:13 +0200617 EXOFS_DBGMSG2("index=0x%lx\n", page->index);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300618 put_page(page);
Boaz Harroshdd296612011-10-12 15:42:07 +0200619 return;
620 }
Boaz Harrosh19350e72014-01-14 16:26:13 +0200621 EXOFS_DBGMSG2("that_locked_page index=0x%lx\n",
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300622 ZERO_PAGE(0) == page ? -1 : page->index);
Boaz Harroshdd296612011-10-12 15:42:07 +0200623}
624
625static const struct _ore_r4w_op _r4w_op = {
626 .get_page = &__r4w_get_page,
627 .put_page = &__r4w_put_page,
628};
629
Boaz Harroshbeaec072008-10-27 19:31:34 +0200630static int write_exec(struct page_collect *pcol)
631{
632 struct exofs_i_info *oi = exofs_i(pcol->inode);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700633 struct ore_io_state *ios;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200634 struct page_collect *pcol_copy = NULL;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200635 int ret;
636
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200637 if (!pcol->pages)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200638 return 0;
639
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200640 BUG_ON(pcol->ios);
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300641 ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, false,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300642 pcol->pg_first << PAGE_SHIFT,
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200643 pcol->length, &pcol->ios);
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200644 if (unlikely(ret))
645 goto err;
646
Boaz Harroshbeaec072008-10-27 19:31:34 +0200647 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
648 if (!pcol_copy) {
Joe Perches571f7f42010-10-21 22:17:17 -0700649 EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200650 ret = -ENOMEM;
651 goto err;
652 }
653
654 *pcol_copy = *pcol;
655
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200656 ios = pcol->ios;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200657 ios->pages = pcol_copy->pages;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200658 ios->done = writepages_done;
Boaz Harroshdd296612011-10-12 15:42:07 +0200659 ios->r4w = &_r4w_op;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200660 ios->private = pcol_copy;
661
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300662 /* pages ownership was passed to pcol_copy */
663 _pcol_reset(pcol);
664
665 ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol);
666 if (unlikely(ret))
667 goto err;
668
669 EXOFS_DBGMSG2("write_exec(0x%lx) offset=0x%llx length=0x%llx\n",
670 pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length));
671
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700672 ret = ore_write(ios);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200673 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700674 EXOFS_ERR("write_exec: ore_write() Failed\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200675 goto err;
676 }
677
678 atomic_inc(&pcol->sbi->s_curr_pending);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200679 return 0;
680
681err:
Idan Kedaraf402ab2012-11-30 16:03:31 +0200682 if (!pcol_copy) /* Failed before ownership transfer */
683 pcol_copy = pcol;
684 _unlock_pcol_pages(pcol_copy, ret, WRITE);
685 pcol_free(pcol_copy);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200686 kfree(pcol_copy);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200687
Boaz Harroshbeaec072008-10-27 19:31:34 +0200688 return ret;
689}
690
691/* writepage_strip is called either directly from writepage() or by the VFS from
692 * within write_cache_pages(), to add one more page to be written to storage.
693 * It will try to collect as many contiguous pages as possible. If a
694 * discontinuity is encountered or it runs out of resources it will submit the
695 * previous segment and will start a new collection.
696 * Eventually caller must submit the last segment if present.
697 */
698static int writepage_strip(struct page *page,
699 struct writeback_control *wbc_unused, void *data)
700{
701 struct page_collect *pcol = data;
702 struct inode *inode = pcol->inode;
703 struct exofs_i_info *oi = exofs_i(inode);
704 loff_t i_size = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300705 pgoff_t end_index = i_size >> PAGE_SHIFT;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200706 size_t len;
707 int ret;
708
709 BUG_ON(!PageLocked(page));
710
711 ret = wait_obj_created(oi);
712 if (unlikely(ret))
713 goto fail;
714
715 if (page->index < end_index)
716 /* in this case, the page is within the limits of the file */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300717 len = PAGE_SIZE;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200718 else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300719 len = i_size & ~PAGE_MASK;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200720
721 if (page->index > end_index || !len) {
722 /* in this case, the page is outside the limits
723 * (truncate in progress)
724 */
725 ret = write_exec(pcol);
726 if (unlikely(ret))
727 goto fail;
728 if (PageError(page))
729 ClearPageError(page);
730 unlock_page(page);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200731 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) "
732 "outside the limits\n",
733 inode->i_ino, page->index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200734 return 0;
735 }
736 }
737
738try_again:
739
740 if (unlikely(pcol->pg_first == -1)) {
741 pcol->pg_first = page->index;
742 } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
743 page->index)) {
744 /* Discontinuity detected, split the request */
745 ret = write_exec(pcol);
746 if (unlikely(ret))
747 goto fail;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200748
749 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n",
750 inode->i_ino, page->index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200751 goto try_again;
752 }
753
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200754 if (!pcol->pages) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200755 ret = pcol_try_alloc(pcol);
756 if (unlikely(ret))
757 goto fail;
758 }
759
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200760 EXOFS_DBGMSG2(" writepage_strip(0x%lx, 0x%lx) len=0x%zx\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200761 inode->i_ino, page->index, len);
762
763 ret = pcol_add_page(pcol, page, len);
764 if (unlikely(ret)) {
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200765 EXOFS_DBGMSG2("Failed pcol_add_page "
Boaz Harroshbeaec072008-10-27 19:31:34 +0200766 "nr_pages=%u total_length=0x%lx\n",
767 pcol->nr_pages, pcol->length);
768
769 /* split the request, next loop will start again */
770 ret = write_exec(pcol);
771 if (unlikely(ret)) {
Joe Perches571f7f42010-10-21 22:17:17 -0700772 EXOFS_DBGMSG("write_exec failed => %d", ret);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200773 goto fail;
774 }
775
776 goto try_again;
777 }
778
779 BUG_ON(PageWriteback(page));
780 set_page_writeback(page);
781
782 return 0;
783
784fail:
Boaz Harrosh06886a52009-11-08 14:54:08 +0200785 EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n",
786 inode->i_ino, page->index, ret);
Michal Hocko5114a972016-10-11 13:56:01 -0700787 mapping_set_error(page->mapping, -EIO);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200788 unlock_page(page);
789 return ret;
790}
791
792static int exofs_writepages(struct address_space *mapping,
793 struct writeback_control *wbc)
794{
795 struct page_collect pcol;
796 long start, end, expected_pages;
797 int ret;
798
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300799 start = wbc->range_start >> PAGE_SHIFT;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200800 end = (wbc->range_end == LLONG_MAX) ?
801 start + mapping->nrpages :
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300802 wbc->range_end >> PAGE_SHIFT;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200803
804 if (start || end)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200805 expected_pages = end - start + 1;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200806 else
807 expected_pages = mapping->nrpages;
808
Boaz Harrosh06886a52009-11-08 14:54:08 +0200809 if (expected_pages < 32L)
810 expected_pages = 32L;
811
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200812 EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx "
Boaz Harrosh06886a52009-11-08 14:54:08 +0200813 "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200814 mapping->host->i_ino, wbc->range_start, wbc->range_end,
Boaz Harrosh06886a52009-11-08 14:54:08 +0200815 mapping->nrpages, start, end, expected_pages);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200816
817 _pcol_init(&pcol, expected_pages, mapping->host);
818
819 ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol);
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300820 if (unlikely(ret)) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200821 EXOFS_ERR("write_cache_pages => %d\n", ret);
822 return ret;
823 }
824
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300825 ret = write_exec(&pcol);
826 if (unlikely(ret))
827 return ret;
828
829 if (wbc->sync_mode == WB_SYNC_ALL) {
830 return write_exec(&pcol); /* pump the last reminder */
831 } else if (pcol.nr_pages) {
832 /* not SYNC let the reminder join the next writeout */
833 unsigned i;
834
835 for (i = 0; i < pcol.nr_pages; i++) {
836 struct page *page = pcol.pages[i];
837
838 end_page_writeback(page);
839 set_page_dirty(page);
840 unlock_page(page);
841 }
842 }
843 return 0;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200844}
845
Boaz Harroshdd296612011-10-12 15:42:07 +0200846/*
Boaz Harroshbeaec072008-10-27 19:31:34 +0200847static int exofs_writepage(struct page *page, struct writeback_control *wbc)
848{
849 struct page_collect pcol;
850 int ret;
851
852 _pcol_init(&pcol, 1, page->mapping->host);
853
854 ret = writepage_strip(page, NULL, &pcol);
855 if (ret) {
856 EXOFS_ERR("exofs_writepage => %d\n", ret);
857 return ret;
858 }
859
860 return write_exec(&pcol);
861}
Boaz Harroshdd296612011-10-12 15:42:07 +0200862*/
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300863/* i_mutex held using inode->i_size directly */
864static void _write_failed(struct inode *inode, loff_t to)
865{
866 if (to > inode->i_size)
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700867 truncate_pagecache(inode, inode->i_size);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300868}
869
Boaz Harroshbeaec072008-10-27 19:31:34 +0200870int exofs_write_begin(struct file *file, struct address_space *mapping,
871 loff_t pos, unsigned len, unsigned flags,
872 struct page **pagep, void **fsdata)
873{
874 int ret = 0;
875 struct page *page;
876
877 page = *pagep;
878 if (page == NULL) {
879 ret = simple_write_begin(file, mapping, pos, len, flags, pagep,
880 fsdata);
881 if (ret) {
Joe Perches571f7f42010-10-21 22:17:17 -0700882 EXOFS_DBGMSG("simple_write_begin failed\n");
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300883 goto out;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200884 }
885
886 page = *pagep;
887 }
888
889 /* read modify write */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300890 if (!PageUptodate(page) && (len != PAGE_SIZE)) {
Boaz Harrosha8f14182010-11-22 18:02:45 +0200891 loff_t i_size = i_size_read(mapping->host);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300892 pgoff_t end_index = i_size >> PAGE_SHIFT;
Boaz Harrosha8f14182010-11-22 18:02:45 +0200893 size_t rlen;
894
895 if (page->index < end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300896 rlen = PAGE_SIZE;
Boaz Harrosha8f14182010-11-22 18:02:45 +0200897 else if (page->index == end_index)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300898 rlen = i_size & ~PAGE_MASK;
Boaz Harrosha8f14182010-11-22 18:02:45 +0200899 else
900 rlen = 0;
901
902 if (!rlen) {
903 clear_highpage(page);
904 SetPageUptodate(page);
905 goto out;
906 }
907
Boaz Harroshbeaec072008-10-27 19:31:34 +0200908 ret = _readpage(page, true);
909 if (ret) {
910 /*SetPageError was done by _readpage. Is it ok?*/
911 unlock_page(page);
Boaz Harrosha8f14182010-11-22 18:02:45 +0200912 EXOFS_DBGMSG("__readpage failed\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200913 }
914 }
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300915out:
916 if (unlikely(ret))
917 _write_failed(mapping->host, pos + len);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200918
919 return ret;
920}
921
922static int exofs_write_begin_export(struct file *file,
923 struct address_space *mapping,
924 loff_t pos, unsigned len, unsigned flags,
925 struct page **pagep, void **fsdata)
926{
927 *pagep = NULL;
928
929 return exofs_write_begin(file, mapping, pos, len, flags, pagep,
930 fsdata);
931}
932
Boaz Harroshefd124b2009-12-27 17:01:42 +0200933static int exofs_write_end(struct file *file, struct address_space *mapping,
934 loff_t pos, unsigned len, unsigned copied,
935 struct page *page, void *fsdata)
936{
937 struct inode *inode = mapping->host;
938 /* According to comment in simple_write_end i_mutex is held */
939 loff_t i_size = inode->i_size;
940 int ret;
941
942 ret = simple_write_end(file, mapping,pos, len, copied, page, fsdata);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300943 if (unlikely(ret))
944 _write_failed(inode, pos + len);
945
946 /* TODO: once simple_write_end marks inode dirty remove */
Boaz Harroshefd124b2009-12-27 17:01:42 +0200947 if (i_size != inode->i_size)
948 mark_inode_dirty(inode);
949 return ret;
950}
951
Boaz Harrosh200b07002010-03-22 11:23:40 +0200952static int exofs_releasepage(struct page *page, gfp_t gfp)
953{
954 EXOFS_DBGMSG("page 0x%lx\n", page->index);
955 WARN_ON(1);
Boaz Harrosh85dc7872010-05-31 18:55:43 +0300956 return 0;
Boaz Harrosh200b07002010-03-22 11:23:40 +0200957}
958
Lukas Czernerd47992f2013-05-21 23:17:23 -0400959static void exofs_invalidatepage(struct page *page, unsigned int offset,
960 unsigned int length)
Boaz Harrosh200b07002010-03-22 11:23:40 +0200961{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400962 EXOFS_DBGMSG("page 0x%lx offset 0x%x length 0x%x\n",
963 page->index, offset, length);
Boaz Harrosh200b07002010-03-22 11:23:40 +0200964 WARN_ON(1);
Boaz Harrosh200b07002010-03-22 11:23:40 +0200965}
966
Boaz Harroshd83c7eb2014-01-13 23:45:43 +0200967
968 /* TODO: Should be easy enough to do proprly */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700969static ssize_t exofs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Boaz Harroshd83c7eb2014-01-13 23:45:43 +0200970{
971 return 0;
972}
973
Boaz Harroshbeaec072008-10-27 19:31:34 +0200974const struct address_space_operations exofs_aops = {
975 .readpage = exofs_readpage,
976 .readpages = exofs_readpages,
Boaz Harroshdd296612011-10-12 15:42:07 +0200977 .writepage = NULL,
Boaz Harroshbeaec072008-10-27 19:31:34 +0200978 .writepages = exofs_writepages,
979 .write_begin = exofs_write_begin_export,
Boaz Harroshefd124b2009-12-27 17:01:42 +0200980 .write_end = exofs_write_end,
Boaz Harrosh200b07002010-03-22 11:23:40 +0200981 .releasepage = exofs_releasepage,
982 .set_page_dirty = __set_page_dirty_nobuffers,
983 .invalidatepage = exofs_invalidatepage,
984
985 /* Not implemented Yet */
986 .bmap = NULL, /* TODO: use osd's OSD_ACT_READ_MAP */
Boaz Harroshd83c7eb2014-01-13 23:45:43 +0200987 .direct_IO = exofs_direct_IO,
Boaz Harrosh200b07002010-03-22 11:23:40 +0200988
989 /* With these NULL has special meaning or default is not exported */
Boaz Harrosh200b07002010-03-22 11:23:40 +0200990 .migratepage = NULL,
991 .launder_page = NULL,
992 .is_partially_uptodate = NULL,
993 .error_remove_page = NULL,
Boaz Harroshbeaec072008-10-27 19:31:34 +0200994};
995
Boaz Harroshe8062712008-10-27 18:37:02 +0200996/******************************************************************************
997 * INODE OPERATIONS
998 *****************************************************************************/
999
1000/*
1001 * Test whether an inode is a fast symlink.
1002 */
1003static inline int exofs_inode_is_fast_symlink(struct inode *inode)
1004{
1005 struct exofs_i_info *oi = exofs_i(inode);
1006
1007 return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0);
1008}
1009
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001010static int _do_truncate(struct inode *inode, loff_t newsize)
Boaz Harrosh06886a52009-11-08 14:54:08 +02001011{
1012 struct exofs_i_info *oi = exofs_i(inode);
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001013 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001014 int ret;
1015
Deepa Dinamani078cd822016-09-14 07:48:04 -07001016 inode->i_mtime = inode->i_ctime = current_time(inode);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001017
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001018 ret = ore_truncate(&sbi->layout, &oi->oc, (u64)newsize);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001019 if (likely(!ret))
1020 truncate_setsize(inode, newsize);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001021
Boaz Harrosh19350e72014-01-14 16:26:13 +02001022 EXOFS_DBGMSG2("(0x%lx) size=0x%llx ret=>%d\n",
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001023 inode->i_ino, newsize, ret);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001024 return ret;
1025}
1026
Boaz Harroshe8062712008-10-27 18:37:02 +02001027/*
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001028 * Set inode attributes - update size attribute on OSD if needed,
1029 * otherwise just call generic functions.
Boaz Harroshe8062712008-10-27 18:37:02 +02001030 */
1031int exofs_setattr(struct dentry *dentry, struct iattr *iattr)
1032{
David Howells2b0143b2015-03-17 22:25:59 +00001033 struct inode *inode = d_inode(dentry);
Boaz Harroshe8062712008-10-27 18:37:02 +02001034 int error;
1035
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001036 /* if we are about to modify an object, and it hasn't been
1037 * created yet, wait
1038 */
1039 error = wait_obj_created(exofs_i(inode));
1040 if (unlikely(error))
1041 return error;
1042
Jan Kara31051c82016-05-26 16:55:18 +02001043 error = setattr_prepare(dentry, iattr);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001044 if (unlikely(error))
Boaz Harroshe8062712008-10-27 18:37:02 +02001045 return error;
1046
Christoph Hellwig10257742010-06-04 11:30:02 +02001047 if ((iattr->ia_valid & ATTR_SIZE) &&
1048 iattr->ia_size != i_size_read(inode)) {
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001049 error = _do_truncate(inode, iattr->ia_size);
1050 if (unlikely(error))
Christoph Hellwig10257742010-06-04 11:30:02 +02001051 return error;
1052 }
1053
1054 setattr_copy(inode, iattr);
1055 mark_inode_dirty(inode);
1056 return 0;
Boaz Harroshe8062712008-10-27 18:37:02 +02001057}
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001058
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001059static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF(
1060 EXOFS_APAGE_FS_DATA,
1061 EXOFS_ATTR_INODE_FILE_LAYOUT,
1062 0);
1063static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF(
1064 EXOFS_APAGE_FS_DATA,
1065 EXOFS_ATTR_INODE_DIR_LAYOUT,
1066 0);
1067
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001068/*
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001069 * Read the Linux inode info from the OSD, and return it as is. In exofs the
1070 * inode info is in an application specific page/attribute of the osd-object.
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001071 */
1072static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001073 struct exofs_fcb *inode)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001074{
1075 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001076 struct osd_attr attrs[] = {
1077 [0] = g_attr_inode_data,
1078 [1] = g_attr_inode_file_layout,
1079 [2] = g_attr_inode_dir_layout,
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001080 };
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001081 struct ore_io_state *ios;
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001082 struct exofs_on_disk_inode_layout *layout;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001083 int ret;
1084
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001085 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001086 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001087 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001088 return ret;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001089 }
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001090
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001091 attrs[1].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
1092 attrs[2].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001093
Boaz Harrosh06886a52009-11-08 14:54:08 +02001094 ios->in_attr = attrs;
1095 ios->in_attr_len = ARRAY_SIZE(attrs);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001096
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001097 ret = ore_read(ios);
Boaz Harrosh96391e22010-02-09 11:43:21 +02001098 if (unlikely(ret)) {
1099 EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001100 _LLU(oi->one_comp.obj.id), ret);
Boaz Harrosh96391e22010-02-09 11:43:21 +02001101 memset(inode, 0, sizeof(*inode));
1102 inode->i_mode = 0040000 | (0777 & ~022);
1103 /* If object is lost on target we might as well enable it's
1104 * delete.
1105 */
Boaz Harroshc8592fc2014-01-14 16:05:52 +02001106 ret = 0;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001107 goto out;
Boaz Harrosh96391e22010-02-09 11:43:21 +02001108 }
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001109
Boaz Harrosh06886a52009-11-08 14:54:08 +02001110 ret = extract_attr_from_ios(ios, &attrs[0]);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001111 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001112 EXOFS_ERR("%s: extract_attr 0 of inode failed\n", __func__);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001113 goto out;
1114 }
Boaz Harrosh06886a52009-11-08 14:54:08 +02001115 WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE);
1116 memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001117
Boaz Harrosh06886a52009-11-08 14:54:08 +02001118 ret = extract_attr_from_ios(ios, &attrs[1]);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001119 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001120 EXOFS_ERR("%s: extract_attr 1 of inode failed\n", __func__);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001121 goto out;
1122 }
1123 if (attrs[1].len) {
1124 layout = attrs[1].val_ptr;
1125 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1126 EXOFS_ERR("%s: unsupported files layout %d\n",
1127 __func__, layout->gen_func);
1128 ret = -ENOTSUPP;
1129 goto out;
1130 }
1131 }
1132
1133 ret = extract_attr_from_ios(ios, &attrs[2]);
1134 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001135 EXOFS_ERR("%s: extract_attr 2 of inode failed\n", __func__);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001136 goto out;
1137 }
1138 if (attrs[2].len) {
1139 layout = attrs[2].val_ptr;
1140 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1141 EXOFS_ERR("%s: unsupported meta-data layout %d\n",
1142 __func__, layout->gen_func);
1143 ret = -ENOTSUPP;
1144 goto out;
1145 }
1146 }
1147
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001148out:
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001149 ore_put_io_state(ios);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001150 return ret;
1151}
1152
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001153static void __oi_init(struct exofs_i_info *oi)
1154{
1155 init_waitqueue_head(&oi->i_wq);
1156 oi->i_flags = 0;
1157}
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001158/*
1159 * Fill in an inode read from the OSD and set it up for use
1160 */
1161struct inode *exofs_iget(struct super_block *sb, unsigned long ino)
1162{
1163 struct exofs_i_info *oi;
1164 struct exofs_fcb fcb;
1165 struct inode *inode;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001166 int ret;
1167
1168 inode = iget_locked(sb, ino);
1169 if (!inode)
1170 return ERR_PTR(-ENOMEM);
1171 if (!(inode->i_state & I_NEW))
1172 return inode;
1173 oi = exofs_i(inode);
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001174 __oi_init(oi);
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001175 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001176 exofs_oi_objno(oi));
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001177
1178 /* read the inode from the osd */
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001179 ret = exofs_get_inode(sb, oi, &fcb);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001180 if (ret)
1181 goto bad_inode;
1182
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001183 set_obj_created(oi);
1184
1185 /* copy stuff from on-disk struct to in-memory struct */
1186 inode->i_mode = le16_to_cpu(fcb.i_mode);
Eric W. Biedermand001b052012-02-10 11:11:19 -08001187 i_uid_write(inode, le32_to_cpu(fcb.i_uid));
1188 i_gid_write(inode, le32_to_cpu(fcb.i_gid));
Miklos Szeredibfe86842011-10-28 14:13:29 +02001189 set_nlink(inode, le16_to_cpu(fcb.i_links_count));
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001190 inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime);
1191 inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime);
1192 inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime);
1193 inode->i_ctime.tv_nsec =
1194 inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0;
1195 oi->i_commit_size = le64_to_cpu(fcb.i_size);
1196 i_size_write(inode, oi->i_commit_size);
1197 inode->i_blkbits = EXOFS_BLKSHIFT;
1198 inode->i_generation = le32_to_cpu(fcb.i_generation);
1199
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001200 oi->i_dir_start_lookup = 0;
1201
1202 if ((inode->i_nlink == 0) && (inode->i_mode == 0)) {
1203 ret = -ESTALE;
1204 goto bad_inode;
1205 }
1206
1207 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1208 if (fcb.i_data[0])
1209 inode->i_rdev =
1210 old_decode_dev(le32_to_cpu(fcb.i_data[0]));
1211 else
1212 inode->i_rdev =
1213 new_decode_dev(le32_to_cpu(fcb.i_data[1]));
1214 } else {
1215 memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data));
1216 }
1217
1218 if (S_ISREG(inode->i_mode)) {
1219 inode->i_op = &exofs_file_inode_operations;
1220 inode->i_fop = &exofs_file_operations;
1221 inode->i_mapping->a_ops = &exofs_aops;
1222 } else if (S_ISDIR(inode->i_mode)) {
1223 inode->i_op = &exofs_dir_inode_operations;
1224 inode->i_fop = &exofs_dir_operations;
1225 inode->i_mapping->a_ops = &exofs_aops;
1226 } else if (S_ISLNK(inode->i_mode)) {
Al Viroa5ef1032015-05-02 10:46:42 -04001227 if (exofs_inode_is_fast_symlink(inode)) {
1228 inode->i_op = &simple_symlink_inode_operations;
1229 inode->i_link = (char *)oi->i_data;
1230 } else {
1231 inode->i_op = &page_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05001232 inode_nohighmem(inode);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001233 inode->i_mapping->a_ops = &exofs_aops;
1234 }
1235 } else {
1236 inode->i_op = &exofs_special_inode_operations;
1237 if (fcb.i_data[0])
1238 init_special_inode(inode, inode->i_mode,
1239 old_decode_dev(le32_to_cpu(fcb.i_data[0])));
1240 else
1241 init_special_inode(inode, inode->i_mode,
1242 new_decode_dev(le32_to_cpu(fcb.i_data[1])));
1243 }
1244
1245 unlock_new_inode(inode);
1246 return inode;
1247
1248bad_inode:
1249 iget_failed(inode);
1250 return ERR_PTR(ret);
1251}
1252
1253int __exofs_wait_obj_created(struct exofs_i_info *oi)
1254{
1255 if (!obj_created(oi)) {
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001256 EXOFS_DBGMSG("!obj_created\n");
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001257 BUG_ON(!obj_2bcreated(oi));
1258 wait_event(oi->i_wq, obj_created(oi));
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001259 EXOFS_DBGMSG("wait_event done\n");
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001260 }
1261 return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0;
1262}
Boaz Harrosh1cea3122011-02-03 17:53:25 +02001263
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001264/*
1265 * Callback function from exofs_new_inode(). The important thing is that we
1266 * set the obj_created flag so that other methods know that the object exists on
1267 * the OSD.
1268 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001269static void create_done(struct ore_io_state *ios, void *p)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001270{
1271 struct inode *inode = p;
1272 struct exofs_i_info *oi = exofs_i(inode);
1273 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
1274 int ret;
1275
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001276 ret = ore_check_io(ios, NULL);
1277 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001278
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001279 atomic_dec(&sbi->s_curr_pending);
1280
1281 if (unlikely(ret)) {
Joe Perches571f7f42010-10-21 22:17:17 -07001282 EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx",
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001283 _LLU(exofs_oi_objno(oi)),
1284 _LLU(oi->one_comp.obj.partition));
Boaz Harrosh06886a52009-11-08 14:54:08 +02001285 /*TODO: When FS is corrupted creation can fail, object already
1286 * exist. Get rid of this asynchronous creation, if exist
1287 * increment the obj counter and try the next object. Until we
1288 * succeed. All these dangling objects will be made into lost
1289 * files by chkfs.exofs
1290 */
1291 }
1292
1293 set_obj_created(oi);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001294
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001295 wake_up(&oi->i_wq);
1296}
1297
1298/*
1299 * Set up a new inode and create an object for it on the OSD
1300 */
Al Virobef41c22011-07-26 03:07:49 -04001301struct inode *exofs_new_inode(struct inode *dir, umode_t mode)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001302{
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001303 struct super_block *sb = dir->i_sb;
1304 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001305 struct inode *inode;
1306 struct exofs_i_info *oi;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001307 struct ore_io_state *ios;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001308 int ret;
1309
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001310 inode = new_inode(sb);
1311 if (!inode)
1312 return ERR_PTR(-ENOMEM);
1313
1314 oi = exofs_i(inode);
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001315 __oi_init(oi);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001316
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001317 set_obj_2bcreated(oi);
1318
Dmitry Monakhove00117f2010-03-04 17:31:48 +03001319 inode_init_owner(inode, dir, mode);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001320 inode->i_ino = sbi->s_nextid++;
1321 inode->i_blkbits = EXOFS_BLKSHIFT;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001322 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001323 oi->i_commit_size = inode->i_size = 0;
1324 spin_lock(&sbi->s_next_gen_lock);
1325 inode->i_generation = sbi->s_next_generation++;
1326 spin_unlock(&sbi->s_next_gen_lock);
1327 insert_inode_hash(inode);
1328
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001329 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001330 exofs_oi_objno(oi));
Boaz Harrosh1cea3122011-02-03 17:53:25 +02001331 exofs_sbi_write_stats(sbi); /* Make sure new sbi->s_nextid is on disk */
1332
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001333 mark_inode_dirty(inode);
1334
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001335 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001336 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001337 EXOFS_ERR("exofs_new_inode: ore_get_io_state failed\n");
Boaz Harrosh06886a52009-11-08 14:54:08 +02001338 return ERR_PTR(ret);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001339 }
1340
Boaz Harrosh06886a52009-11-08 14:54:08 +02001341 ios->done = create_done;
1342 ios->private = inode;
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001343
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001344 ret = ore_create(ios);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001345 if (ret) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001346 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001347 return ERR_PTR(ret);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001348 }
1349 atomic_inc(&sbi->s_curr_pending);
1350
1351 return inode;
1352}
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001353
1354/*
1355 * struct to pass two arguments to update_inode's callback
1356 */
1357struct updatei_args {
1358 struct exofs_sb_info *sbi;
1359 struct exofs_fcb fcb;
1360};
1361
1362/*
1363 * Callback function from exofs_update_inode().
1364 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001365static void updatei_done(struct ore_io_state *ios, void *p)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001366{
1367 struct updatei_args *args = p;
1368
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001369 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001370
1371 atomic_dec(&args->sbi->s_curr_pending);
1372
1373 kfree(args);
1374}
1375
1376/*
1377 * Write the inode to the OSD. Just fill up the struct, and set the attribute
1378 * synchronously or asynchronously depending on the do_sync flag.
1379 */
1380static int exofs_update_inode(struct inode *inode, int do_sync)
1381{
1382 struct exofs_i_info *oi = exofs_i(inode);
1383 struct super_block *sb = inode->i_sb;
1384 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001385 struct ore_io_state *ios;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001386 struct osd_attr attr;
1387 struct exofs_fcb *fcb;
1388 struct updatei_args *args;
1389 int ret;
1390
1391 args = kzalloc(sizeof(*args), GFP_KERNEL);
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001392 if (!args) {
Joe Perches571f7f42010-10-21 22:17:17 -07001393 EXOFS_DBGMSG("Failed kzalloc of args\n");
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001394 return -ENOMEM;
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001395 }
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001396
1397 fcb = &args->fcb;
1398
1399 fcb->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biedermand001b052012-02-10 11:11:19 -08001400 fcb->i_uid = cpu_to_le32(i_uid_read(inode));
1401 fcb->i_gid = cpu_to_le32(i_gid_read(inode));
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001402 fcb->i_links_count = cpu_to_le16(inode->i_nlink);
1403 fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
1404 fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
1405 fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
1406 oi->i_commit_size = i_size_read(inode);
1407 fcb->i_size = cpu_to_le64(oi->i_commit_size);
1408 fcb->i_generation = cpu_to_le32(inode->i_generation);
1409
1410 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1411 if (old_valid_dev(inode->i_rdev)) {
1412 fcb->i_data[0] =
1413 cpu_to_le32(old_encode_dev(inode->i_rdev));
1414 fcb->i_data[1] = 0;
1415 } else {
1416 fcb->i_data[0] = 0;
1417 fcb->i_data[1] =
1418 cpu_to_le32(new_encode_dev(inode->i_rdev));
1419 fcb->i_data[2] = 0;
1420 }
1421 } else
1422 memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data));
1423
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001424 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001425 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001426 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001427 goto free_args;
1428 }
1429
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001430 attr = g_attr_inode_data;
1431 attr.val_ptr = fcb;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001432 ios->out_attr_len = 1;
1433 ios->out_attr = &attr;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001434
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001435 wait_obj_created(oi);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001436
Boaz Harrosh06886a52009-11-08 14:54:08 +02001437 if (!do_sync) {
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001438 args->sbi = sbi;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001439 ios->done = updatei_done;
1440 ios->private = args;
1441 }
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001442
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001443 ret = ore_write(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001444 if (!do_sync && !ret) {
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001445 atomic_inc(&sbi->s_curr_pending);
1446 goto out; /* deallocation in updatei_done */
1447 }
1448
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001449 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001450free_args:
1451 kfree(args);
1452out:
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001453 EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n",
1454 inode->i_ino, do_sync, ret);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001455 return ret;
1456}
1457
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001458int exofs_write_inode(struct inode *inode, struct writeback_control *wbc)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001459{
Nick Piggin97178b72010-11-25 12:47:15 +02001460 /* FIXME: fix fsync and use wbc->sync_mode == WB_SYNC_ALL */
1461 return exofs_update_inode(inode, 1);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001462}
1463
1464/*
1465 * Callback function from exofs_delete_inode() - don't have much cleaning up to
1466 * do.
1467 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001468static void delete_done(struct ore_io_state *ios, void *p)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001469{
Boaz Harrosh06886a52009-11-08 14:54:08 +02001470 struct exofs_sb_info *sbi = p;
1471
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001472 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001473
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001474 atomic_dec(&sbi->s_curr_pending);
1475}
1476
1477/*
1478 * Called when the refcount of an inode reaches zero. We remove the object
1479 * from the OSD here. We make sure the object was created before we try and
1480 * delete it.
1481 */
Al Viro4ec70c92010-06-07 11:42:26 -04001482void exofs_evict_inode(struct inode *inode)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001483{
1484 struct exofs_i_info *oi = exofs_i(inode);
1485 struct super_block *sb = inode->i_sb;
1486 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001487 struct ore_io_state *ios;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001488 int ret;
1489
Johannes Weiner91b0abe2014-04-03 14:47:49 -07001490 truncate_inode_pages_final(&inode->i_data);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001491
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001492 /* TODO: should do better here */
Al Viro4ec70c92010-06-07 11:42:26 -04001493 if (inode->i_nlink || is_bad_inode(inode))
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001494 goto no_delete;
1495
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001496 inode->i_size = 0;
Jan Karadbd57682012-05-03 14:48:02 +02001497 clear_inode(inode);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001498
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001499 /* if we are deleting an obj that hasn't been created yet, wait.
1500 * This also makes sure that create_done cannot be called with an
1501 * already evicted inode.
1502 */
1503 wait_obj_created(oi);
1504 /* ignore the error, attempt a remove anyway */
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001505
1506 /* Now Remove the OSD objects */
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001507 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001508 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001509 EXOFS_ERR("%s: ore_get_io_state failed\n", __func__);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001510 return;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001511 }
1512
Boaz Harrosh06886a52009-11-08 14:54:08 +02001513 ios->done = delete_done;
1514 ios->private = sbi;
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001515
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001516 ret = ore_remove(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001517 if (ret) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001518 EXOFS_ERR("%s: ore_remove failed\n", __func__);
1519 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001520 return;
1521 }
1522 atomic_inc(&sbi->s_curr_pending);
1523
1524 return;
1525
1526no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02001527 clear_inode(inode);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001528}