blob: ee4317faccb1951852b483d825a5ccec7efa8a24 [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
5 * Boaz Harrosh <bharrosh@panasas.com>
6 *
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,
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200320 pcol->pg_first << PAGE_CACHE_SHIFT,
321 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 */
380static int readpage_strip(void *data, struct page *page)
381{
382 struct page_collect *pcol = data;
383 struct inode *inode = pcol->inode;
384 struct exofs_i_info *oi = exofs_i(inode);
385 loff_t i_size = i_size_read(inode);
386 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
387 size_t len;
388 int ret;
389
Kautuk Consul0e8d96d2012-02-20 03:46:12 -0500390 BUG_ON(!PageLocked(page));
391
Boaz Harroshbeaec072008-10-27 19:31:34 +0200392 /* FIXME: Just for debugging, will be removed */
393 if (PageUptodate(page))
394 EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino,
395 page->index);
396
Boaz Harroshdd296612011-10-12 15:42:07 +0200397 pcol->that_locked_page = page;
398
Boaz Harroshbeaec072008-10-27 19:31:34 +0200399 if (page->index < end_index)
400 len = PAGE_CACHE_SIZE;
401 else if (page->index == end_index)
402 len = i_size & ~PAGE_CACHE_MASK;
403 else
404 len = 0;
405
406 if (!len || !obj_created(oi)) {
407 /* this will be out of bounds, or doesn't exist yet.
408 * Current page is cleared and the request is split
409 */
410 clear_highpage(page);
411
412 SetPageUptodate(page);
413 if (PageError(page))
414 ClearPageError(page);
415
Boaz Harroshf17b1f92010-10-07 13:37:51 -0400416 if (!pcol->read_4_write)
417 unlock_page(page);
Boaz Harrosha8f14182010-11-22 18:02:45 +0200418 EXOFS_DBGMSG("readpage_strip(0x%lx) empty page len=%zx "
419 "read_4_write=%d index=0x%lx end_index=0x%lx "
420 "splitting\n", inode->i_ino, len,
421 pcol->read_4_write, page->index, end_index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200422
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400423 return read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200424 }
425
426try_again:
427
428 if (unlikely(pcol->pg_first == -1)) {
429 pcol->pg_first = page->index;
430 } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
431 page->index)) {
432 /* Discontinuity detected, split the request */
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400433 ret = read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200434 if (unlikely(ret))
435 goto fail;
436 goto try_again;
437 }
438
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200439 if (!pcol->pages) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200440 ret = pcol_try_alloc(pcol);
441 if (unlikely(ret))
442 goto fail;
443 }
444
445 if (len != PAGE_CACHE_SIZE)
446 zero_user(page, len, PAGE_CACHE_SIZE - len);
447
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200448 EXOFS_DBGMSG2(" readpage_strip(0x%lx, 0x%lx) len=0x%zx\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200449 inode->i_ino, page->index, len);
450
451 ret = pcol_add_page(pcol, page, len);
452 if (ret) {
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200453 EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p "
Boaz Harroshbeaec072008-10-27 19:31:34 +0200454 "this_len=0x%zx nr_pages=%u length=0x%lx\n",
455 page, len, pcol->nr_pages, pcol->length);
456
457 /* split the request, and start again with current page */
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400458 ret = read_exec(pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200459 if (unlikely(ret))
460 goto fail;
461
462 goto try_again;
463 }
464
465 return 0;
466
467fail:
468 /* SetPageError(page); ??? */
469 unlock_page(page);
470 return ret;
471}
472
473static int exofs_readpages(struct file *file, struct address_space *mapping,
474 struct list_head *pages, unsigned nr_pages)
475{
476 struct page_collect pcol;
477 int ret;
478
479 _pcol_init(&pcol, nr_pages, mapping->host);
480
481 ret = read_cache_pages(mapping, pages, readpage_strip, &pcol);
482 if (ret) {
483 EXOFS_ERR("read_cache_pages => %d\n", ret);
484 return ret;
485 }
486
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300487 ret = read_exec(&pcol);
488 if (unlikely(ret))
489 return ret;
490
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400491 return read_exec(&pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200492}
493
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400494static int _readpage(struct page *page, bool read_4_write)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200495{
496 struct page_collect pcol;
497 int ret;
498
499 _pcol_init(&pcol, 1, page->mapping->host);
500
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400501 pcol.read_4_write = read_4_write;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200502 ret = readpage_strip(&pcol, page);
503 if (ret) {
504 EXOFS_ERR("_readpage => %d\n", ret);
505 return ret;
506 }
507
Boaz Harrosh7aebf412010-10-13 12:55:43 -0400508 return read_exec(&pcol);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200509}
510
511/*
512 * We don't need the file
513 */
514static int exofs_readpage(struct file *file, struct page *page)
515{
516 return _readpage(page, false);
517}
518
Boaz Harrosh06886a52009-11-08 14:54:08 +0200519/* Callback for osd_write. All writes are asynchronous */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700520static void writepages_done(struct ore_io_state *ios, void *p)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200521{
522 struct page_collect *pcol = p;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200523 int i;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200524 u64 good_bytes;
525 u64 length = 0;
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300526 int ret = ore_check_io(ios, NULL);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200527
Boaz Harroshbeaec072008-10-27 19:31:34 +0200528 atomic_dec(&pcol->sbi->s_curr_pending);
529
Boaz Harrosh154a9302011-08-26 21:00:32 -0700530 if (likely(!ret)) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200531 good_bytes = pcol->length;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700532 ret = PAGE_WAS_NOT_IN_IO;
533 } else {
Boaz Harrosh4b46c9f2011-09-28 13:25:50 +0300534 good_bytes = 0;
Boaz Harrosh154a9302011-08-26 21:00:32 -0700535 }
Boaz Harroshbeaec072008-10-27 19:31:34 +0200536
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200537 EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx"
Boaz Harroshbeaec072008-10-27 19:31:34 +0200538 " length=0x%lx nr_pages=%u\n",
539 pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
540 pcol->nr_pages);
541
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200542 for (i = 0; i < pcol->nr_pages; i++) {
543 struct page *page = pcol->pages[i];
Boaz Harroshbeaec072008-10-27 19:31:34 +0200544 struct inode *inode = page->mapping->host;
545 int page_stat;
546
547 if (inode != pcol->inode)
548 continue; /* osd might add more pages to a bio */
549
550 if (likely(length < good_bytes))
551 page_stat = 0;
552 else
553 page_stat = ret;
554
555 update_write_page(page, page_stat);
556 unlock_page(page);
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200557 EXOFS_DBGMSG2(" writepages_done(0x%lx, 0x%lx) status=%d\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200558 inode->i_ino, page->index, page_stat);
559
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200560 length += PAGE_SIZE;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200561 }
562
563 pcol_free(pcol);
564 kfree(pcol);
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200565 EXOFS_DBGMSG2("writepages_done END\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200566}
567
Boaz Harroshdd296612011-10-12 15:42:07 +0200568static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
569{
570 struct page_collect *pcol = priv;
571 pgoff_t index = offset / PAGE_SIZE;
572
573 if (!pcol->that_locked_page ||
574 (pcol->that_locked_page->index != index)) {
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300575 struct page *page;
576 loff_t i_size = i_size_read(pcol->inode);
Boaz Harroshdd296612011-10-12 15:42:07 +0200577
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300578 if (offset >= i_size) {
579 *uptodate = true;
Boaz Harrosh19350e72014-01-14 16:26:13 +0200580 EXOFS_DBGMSG2("offset >= i_size index=0x%lx\n", index);
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300581 return ZERO_PAGE(0);
582 }
583
584 page = find_get_page(pcol->inode->i_mapping, index);
Boaz Harroshdd296612011-10-12 15:42:07 +0200585 if (!page) {
586 page = find_or_create_page(pcol->inode->i_mapping,
587 index, GFP_NOFS);
588 if (unlikely(!page)) {
589 EXOFS_DBGMSG("grab_cache_page Failed "
590 "index=0x%llx\n", _LLU(index));
591 return NULL;
592 }
593 unlock_page(page);
594 }
595 if (PageDirty(page) || PageWriteback(page))
596 *uptodate = true;
597 else
598 *uptodate = PageUptodate(page);
Boaz Harrosh19350e72014-01-14 16:26:13 +0200599 EXOFS_DBGMSG2("index=0x%lx uptodate=%d\n", index, *uptodate);
Boaz Harroshdd296612011-10-12 15:42:07 +0200600 return page;
601 } else {
Boaz Harrosh19350e72014-01-14 16:26:13 +0200602 EXOFS_DBGMSG2("YES that_locked_page index=0x%lx\n",
Boaz Harroshdd296612011-10-12 15:42:07 +0200603 pcol->that_locked_page->index);
604 *uptodate = true;
605 return pcol->that_locked_page;
606 }
607}
608
609static void __r4w_put_page(void *priv, struct page *page)
610{
611 struct page_collect *pcol = priv;
612
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300613 if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) {
Boaz Harrosh19350e72014-01-14 16:26:13 +0200614 EXOFS_DBGMSG2("index=0x%lx\n", page->index);
Boaz Harroshdd296612011-10-12 15:42:07 +0200615 page_cache_release(page);
616 return;
617 }
Boaz Harrosh19350e72014-01-14 16:26:13 +0200618 EXOFS_DBGMSG2("that_locked_page index=0x%lx\n",
Boaz Harrosh4b74f6e2012-07-20 15:50:27 +0300619 ZERO_PAGE(0) == page ? -1 : page->index);
Boaz Harroshdd296612011-10-12 15:42:07 +0200620}
621
622static const struct _ore_r4w_op _r4w_op = {
623 .get_page = &__r4w_get_page,
624 .put_page = &__r4w_put_page,
625};
626
Boaz Harroshbeaec072008-10-27 19:31:34 +0200627static int write_exec(struct page_collect *pcol)
628{
629 struct exofs_i_info *oi = exofs_i(pcol->inode);
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700630 struct ore_io_state *ios;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200631 struct page_collect *pcol_copy = NULL;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200632 int ret;
633
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200634 if (!pcol->pages)
Boaz Harroshbeaec072008-10-27 19:31:34 +0200635 return 0;
636
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200637 BUG_ON(pcol->ios);
Boaz Harrosh5bf696d2011-09-28 11:39:59 +0300638 ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, false,
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200639 pcol->pg_first << PAGE_CACHE_SHIFT,
640 pcol->length, &pcol->ios);
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200641 if (unlikely(ret))
642 goto err;
643
Boaz Harroshbeaec072008-10-27 19:31:34 +0200644 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
645 if (!pcol_copy) {
Joe Perches571f7f42010-10-21 22:17:17 -0700646 EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200647 ret = -ENOMEM;
648 goto err;
649 }
650
651 *pcol_copy = *pcol;
652
Boaz Harroshe1042ba2010-11-16 20:09:58 +0200653 ios = pcol->ios;
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200654 ios->pages = pcol_copy->pages;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200655 ios->done = writepages_done;
Boaz Harroshdd296612011-10-12 15:42:07 +0200656 ios->r4w = &_r4w_op;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200657 ios->private = pcol_copy;
658
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300659 /* pages ownership was passed to pcol_copy */
660 _pcol_reset(pcol);
661
662 ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol);
663 if (unlikely(ret))
664 goto err;
665
666 EXOFS_DBGMSG2("write_exec(0x%lx) offset=0x%llx length=0x%llx\n",
667 pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length));
668
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700669 ret = ore_write(ios);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200670 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -0700671 EXOFS_ERR("write_exec: ore_write() Failed\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200672 goto err;
673 }
674
675 atomic_inc(&pcol->sbi->s_curr_pending);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200676 return 0;
677
678err:
Idan Kedaraf402ab2012-11-30 16:03:31 +0200679 if (!pcol_copy) /* Failed before ownership transfer */
680 pcol_copy = pcol;
681 _unlock_pcol_pages(pcol_copy, ret, WRITE);
682 pcol_free(pcol_copy);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200683 kfree(pcol_copy);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200684
Boaz Harroshbeaec072008-10-27 19:31:34 +0200685 return ret;
686}
687
688/* writepage_strip is called either directly from writepage() or by the VFS from
689 * within write_cache_pages(), to add one more page to be written to storage.
690 * It will try to collect as many contiguous pages as possible. If a
691 * discontinuity is encountered or it runs out of resources it will submit the
692 * previous segment and will start a new collection.
693 * Eventually caller must submit the last segment if present.
694 */
695static int writepage_strip(struct page *page,
696 struct writeback_control *wbc_unused, void *data)
697{
698 struct page_collect *pcol = data;
699 struct inode *inode = pcol->inode;
700 struct exofs_i_info *oi = exofs_i(inode);
701 loff_t i_size = i_size_read(inode);
702 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
703 size_t len;
704 int ret;
705
706 BUG_ON(!PageLocked(page));
707
708 ret = wait_obj_created(oi);
709 if (unlikely(ret))
710 goto fail;
711
712 if (page->index < end_index)
713 /* in this case, the page is within the limits of the file */
714 len = PAGE_CACHE_SIZE;
715 else {
716 len = i_size & ~PAGE_CACHE_MASK;
717
718 if (page->index > end_index || !len) {
719 /* in this case, the page is outside the limits
720 * (truncate in progress)
721 */
722 ret = write_exec(pcol);
723 if (unlikely(ret))
724 goto fail;
725 if (PageError(page))
726 ClearPageError(page);
727 unlock_page(page);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200728 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) "
729 "outside the limits\n",
730 inode->i_ino, page->index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200731 return 0;
732 }
733 }
734
735try_again:
736
737 if (unlikely(pcol->pg_first == -1)) {
738 pcol->pg_first = page->index;
739 } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
740 page->index)) {
741 /* Discontinuity detected, split the request */
742 ret = write_exec(pcol);
743 if (unlikely(ret))
744 goto fail;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200745
746 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n",
747 inode->i_ino, page->index);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200748 goto try_again;
749 }
750
Boaz Harrosh86093aa2010-01-28 18:24:06 +0200751 if (!pcol->pages) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200752 ret = pcol_try_alloc(pcol);
753 if (unlikely(ret))
754 goto fail;
755 }
756
Boaz Harroshfe33cc12009-11-01 18:28:14 +0200757 EXOFS_DBGMSG2(" writepage_strip(0x%lx, 0x%lx) len=0x%zx\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200758 inode->i_ino, page->index, len);
759
760 ret = pcol_add_page(pcol, page, len);
761 if (unlikely(ret)) {
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200762 EXOFS_DBGMSG2("Failed pcol_add_page "
Boaz Harroshbeaec072008-10-27 19:31:34 +0200763 "nr_pages=%u total_length=0x%lx\n",
764 pcol->nr_pages, pcol->length);
765
766 /* split the request, next loop will start again */
767 ret = write_exec(pcol);
768 if (unlikely(ret)) {
Joe Perches571f7f42010-10-21 22:17:17 -0700769 EXOFS_DBGMSG("write_exec failed => %d", ret);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200770 goto fail;
771 }
772
773 goto try_again;
774 }
775
776 BUG_ON(PageWriteback(page));
777 set_page_writeback(page);
778
779 return 0;
780
781fail:
Boaz Harrosh06886a52009-11-08 14:54:08 +0200782 EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n",
783 inode->i_ino, page->index, ret);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200784 set_bit(AS_EIO, &page->mapping->flags);
785 unlock_page(page);
786 return ret;
787}
788
789static int exofs_writepages(struct address_space *mapping,
790 struct writeback_control *wbc)
791{
792 struct page_collect pcol;
793 long start, end, expected_pages;
794 int ret;
795
796 start = wbc->range_start >> PAGE_CACHE_SHIFT;
797 end = (wbc->range_end == LLONG_MAX) ?
798 start + mapping->nrpages :
799 wbc->range_end >> PAGE_CACHE_SHIFT;
800
801 if (start || end)
Boaz Harrosh06886a52009-11-08 14:54:08 +0200802 expected_pages = end - start + 1;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200803 else
804 expected_pages = mapping->nrpages;
805
Boaz Harrosh06886a52009-11-08 14:54:08 +0200806 if (expected_pages < 32L)
807 expected_pages = 32L;
808
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +0200809 EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx "
Boaz Harrosh06886a52009-11-08 14:54:08 +0200810 "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n",
Boaz Harroshbeaec072008-10-27 19:31:34 +0200811 mapping->host->i_ino, wbc->range_start, wbc->range_end,
Boaz Harrosh06886a52009-11-08 14:54:08 +0200812 mapping->nrpages, start, end, expected_pages);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200813
814 _pcol_init(&pcol, expected_pages, mapping->host);
815
816 ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol);
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300817 if (unlikely(ret)) {
Boaz Harroshbeaec072008-10-27 19:31:34 +0200818 EXOFS_ERR("write_cache_pages => %d\n", ret);
819 return ret;
820 }
821
Boaz Harroshb916c5c2011-09-28 11:55:51 +0300822 ret = write_exec(&pcol);
823 if (unlikely(ret))
824 return ret;
825
826 if (wbc->sync_mode == WB_SYNC_ALL) {
827 return write_exec(&pcol); /* pump the last reminder */
828 } else if (pcol.nr_pages) {
829 /* not SYNC let the reminder join the next writeout */
830 unsigned i;
831
832 for (i = 0; i < pcol.nr_pages; i++) {
833 struct page *page = pcol.pages[i];
834
835 end_page_writeback(page);
836 set_page_dirty(page);
837 unlock_page(page);
838 }
839 }
840 return 0;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200841}
842
Boaz Harroshdd296612011-10-12 15:42:07 +0200843/*
Boaz Harroshbeaec072008-10-27 19:31:34 +0200844static int exofs_writepage(struct page *page, struct writeback_control *wbc)
845{
846 struct page_collect pcol;
847 int ret;
848
849 _pcol_init(&pcol, 1, page->mapping->host);
850
851 ret = writepage_strip(page, NULL, &pcol);
852 if (ret) {
853 EXOFS_ERR("exofs_writepage => %d\n", ret);
854 return ret;
855 }
856
857 return write_exec(&pcol);
858}
Boaz Harroshdd296612011-10-12 15:42:07 +0200859*/
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300860/* i_mutex held using inode->i_size directly */
861static void _write_failed(struct inode *inode, loff_t to)
862{
863 if (to > inode->i_size)
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700864 truncate_pagecache(inode, inode->i_size);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300865}
866
Boaz Harroshbeaec072008-10-27 19:31:34 +0200867int exofs_write_begin(struct file *file, struct address_space *mapping,
868 loff_t pos, unsigned len, unsigned flags,
869 struct page **pagep, void **fsdata)
870{
871 int ret = 0;
872 struct page *page;
873
874 page = *pagep;
875 if (page == NULL) {
876 ret = simple_write_begin(file, mapping, pos, len, flags, pagep,
877 fsdata);
878 if (ret) {
Joe Perches571f7f42010-10-21 22:17:17 -0700879 EXOFS_DBGMSG("simple_write_begin failed\n");
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300880 goto out;
Boaz Harroshbeaec072008-10-27 19:31:34 +0200881 }
882
883 page = *pagep;
884 }
885
886 /* read modify write */
887 if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
Boaz Harrosha8f14182010-11-22 18:02:45 +0200888 loff_t i_size = i_size_read(mapping->host);
889 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
890 size_t rlen;
891
892 if (page->index < end_index)
893 rlen = PAGE_CACHE_SIZE;
894 else if (page->index == end_index)
895 rlen = i_size & ~PAGE_CACHE_MASK;
896 else
897 rlen = 0;
898
899 if (!rlen) {
900 clear_highpage(page);
901 SetPageUptodate(page);
902 goto out;
903 }
904
Boaz Harroshbeaec072008-10-27 19:31:34 +0200905 ret = _readpage(page, true);
906 if (ret) {
907 /*SetPageError was done by _readpage. Is it ok?*/
908 unlock_page(page);
Boaz Harrosha8f14182010-11-22 18:02:45 +0200909 EXOFS_DBGMSG("__readpage failed\n");
Boaz Harroshbeaec072008-10-27 19:31:34 +0200910 }
911 }
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300912out:
913 if (unlikely(ret))
914 _write_failed(mapping->host, pos + len);
Boaz Harroshbeaec072008-10-27 19:31:34 +0200915
916 return ret;
917}
918
919static int exofs_write_begin_export(struct file *file,
920 struct address_space *mapping,
921 loff_t pos, unsigned len, unsigned flags,
922 struct page **pagep, void **fsdata)
923{
924 *pagep = NULL;
925
926 return exofs_write_begin(file, mapping, pos, len, flags, pagep,
927 fsdata);
928}
929
Boaz Harroshefd124b2009-12-27 17:01:42 +0200930static int exofs_write_end(struct file *file, struct address_space *mapping,
931 loff_t pos, unsigned len, unsigned copied,
932 struct page *page, void *fsdata)
933{
934 struct inode *inode = mapping->host;
935 /* According to comment in simple_write_end i_mutex is held */
936 loff_t i_size = inode->i_size;
937 int ret;
938
939 ret = simple_write_end(file, mapping,pos, len, copied, page, fsdata);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +0300940 if (unlikely(ret))
941 _write_failed(inode, pos + len);
942
943 /* TODO: once simple_write_end marks inode dirty remove */
Boaz Harroshefd124b2009-12-27 17:01:42 +0200944 if (i_size != inode->i_size)
945 mark_inode_dirty(inode);
946 return ret;
947}
948
Boaz Harrosh200b07002010-03-22 11:23:40 +0200949static int exofs_releasepage(struct page *page, gfp_t gfp)
950{
951 EXOFS_DBGMSG("page 0x%lx\n", page->index);
952 WARN_ON(1);
Boaz Harrosh85dc7872010-05-31 18:55:43 +0300953 return 0;
Boaz Harrosh200b07002010-03-22 11:23:40 +0200954}
955
Lukas Czernerd47992f2013-05-21 23:17:23 -0400956static void exofs_invalidatepage(struct page *page, unsigned int offset,
957 unsigned int length)
Boaz Harrosh200b07002010-03-22 11:23:40 +0200958{
Lukas Czernerd47992f2013-05-21 23:17:23 -0400959 EXOFS_DBGMSG("page 0x%lx offset 0x%x length 0x%x\n",
960 page->index, offset, length);
Boaz Harrosh200b07002010-03-22 11:23:40 +0200961 WARN_ON(1);
Boaz Harrosh200b07002010-03-22 11:23:40 +0200962}
963
Boaz Harroshd83c7eb2014-01-13 23:45:43 +0200964
965 /* TODO: Should be easy enough to do proprly */
966static ssize_t exofs_direct_IO(int rw, struct kiocb *iocb,
967 const struct iovec *iov, loff_t offset, unsigned long nr_segs)
968{
969 return 0;
970}
971
Boaz Harroshbeaec072008-10-27 19:31:34 +0200972const struct address_space_operations exofs_aops = {
973 .readpage = exofs_readpage,
974 .readpages = exofs_readpages,
Boaz Harroshdd296612011-10-12 15:42:07 +0200975 .writepage = NULL,
Boaz Harroshbeaec072008-10-27 19:31:34 +0200976 .writepages = exofs_writepages,
977 .write_begin = exofs_write_begin_export,
Boaz Harroshefd124b2009-12-27 17:01:42 +0200978 .write_end = exofs_write_end,
Boaz Harrosh200b07002010-03-22 11:23:40 +0200979 .releasepage = exofs_releasepage,
980 .set_page_dirty = __set_page_dirty_nobuffers,
981 .invalidatepage = exofs_invalidatepage,
982
983 /* Not implemented Yet */
984 .bmap = NULL, /* TODO: use osd's OSD_ACT_READ_MAP */
Boaz Harroshd83c7eb2014-01-13 23:45:43 +0200985 .direct_IO = exofs_direct_IO,
Boaz Harrosh200b07002010-03-22 11:23:40 +0200986
987 /* With these NULL has special meaning or default is not exported */
Boaz Harrosh200b07002010-03-22 11:23:40 +0200988 .get_xip_mem = NULL,
989 .migratepage = NULL,
990 .launder_page = NULL,
991 .is_partially_uptodate = NULL,
992 .error_remove_page = NULL,
Boaz Harroshbeaec072008-10-27 19:31:34 +0200993};
994
Boaz Harroshe8062712008-10-27 18:37:02 +0200995/******************************************************************************
996 * INODE OPERATIONS
997 *****************************************************************************/
998
999/*
1000 * Test whether an inode is a fast symlink.
1001 */
1002static inline int exofs_inode_is_fast_symlink(struct inode *inode)
1003{
1004 struct exofs_i_info *oi = exofs_i(inode);
1005
1006 return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0);
1007}
1008
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001009static int _do_truncate(struct inode *inode, loff_t newsize)
Boaz Harrosh06886a52009-11-08 14:54:08 +02001010{
1011 struct exofs_i_info *oi = exofs_i(inode);
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001012 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001013 int ret;
1014
1015 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1016
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001017 ret = ore_truncate(&sbi->layout, &oi->oc, (u64)newsize);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001018 if (likely(!ret))
1019 truncate_setsize(inode, newsize);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001020
Boaz Harrosh19350e72014-01-14 16:26:13 +02001021 EXOFS_DBGMSG2("(0x%lx) size=0x%llx ret=>%d\n",
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001022 inode->i_ino, newsize, ret);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001023 return ret;
1024}
1025
Boaz Harroshe8062712008-10-27 18:37:02 +02001026/*
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001027 * Set inode attributes - update size attribute on OSD if needed,
1028 * otherwise just call generic functions.
Boaz Harroshe8062712008-10-27 18:37:02 +02001029 */
1030int exofs_setattr(struct dentry *dentry, struct iattr *iattr)
1031{
1032 struct inode *inode = dentry->d_inode;
1033 int error;
1034
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001035 /* if we are about to modify an object, and it hasn't been
1036 * created yet, wait
1037 */
1038 error = wait_obj_created(exofs_i(inode));
1039 if (unlikely(error))
1040 return error;
1041
Boaz Harroshe8062712008-10-27 18:37:02 +02001042 error = inode_change_ok(inode, iattr);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001043 if (unlikely(error))
Boaz Harroshe8062712008-10-27 18:37:02 +02001044 return error;
1045
Christoph Hellwig10257742010-06-04 11:30:02 +02001046 if ((iattr->ia_valid & ATTR_SIZE) &&
1047 iattr->ia_size != i_size_read(inode)) {
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001048 error = _do_truncate(inode, iattr->ia_size);
1049 if (unlikely(error))
Christoph Hellwig10257742010-06-04 11:30:02 +02001050 return error;
1051 }
1052
1053 setattr_copy(inode, iattr);
1054 mark_inode_dirty(inode);
1055 return 0;
Boaz Harroshe8062712008-10-27 18:37:02 +02001056}
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001057
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001058static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF(
1059 EXOFS_APAGE_FS_DATA,
1060 EXOFS_ATTR_INODE_FILE_LAYOUT,
1061 0);
1062static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF(
1063 EXOFS_APAGE_FS_DATA,
1064 EXOFS_ATTR_INODE_DIR_LAYOUT,
1065 0);
1066
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001067/*
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001068 * Read the Linux inode info from the OSD, and return it as is. In exofs the
1069 * inode info is in an application specific page/attribute of the osd-object.
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001070 */
1071static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001072 struct exofs_fcb *inode)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001073{
1074 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001075 struct osd_attr attrs[] = {
1076 [0] = g_attr_inode_data,
1077 [1] = g_attr_inode_file_layout,
1078 [2] = g_attr_inode_dir_layout,
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001079 };
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001080 struct ore_io_state *ios;
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001081 struct exofs_on_disk_inode_layout *layout;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001082 int ret;
1083
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001084 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001085 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001086 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001087 return ret;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001088 }
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001089
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001090 attrs[1].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
1091 attrs[2].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001092
Boaz Harrosh06886a52009-11-08 14:54:08 +02001093 ios->in_attr = attrs;
1094 ios->in_attr_len = ARRAY_SIZE(attrs);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001095
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001096 ret = ore_read(ios);
Boaz Harrosh96391e22010-02-09 11:43:21 +02001097 if (unlikely(ret)) {
1098 EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n",
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001099 _LLU(oi->one_comp.obj.id), ret);
Boaz Harrosh96391e22010-02-09 11:43:21 +02001100 memset(inode, 0, sizeof(*inode));
1101 inode->i_mode = 0040000 | (0777 & ~022);
1102 /* If object is lost on target we might as well enable it's
1103 * delete.
1104 */
Boaz Harroshc8592fc2014-01-14 16:05:52 +02001105 ret = 0;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001106 goto out;
Boaz Harrosh96391e22010-02-09 11:43:21 +02001107 }
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001108
Boaz Harrosh06886a52009-11-08 14:54:08 +02001109 ret = extract_attr_from_ios(ios, &attrs[0]);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001110 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001111 EXOFS_ERR("%s: extract_attr 0 of inode failed\n", __func__);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001112 goto out;
1113 }
Boaz Harrosh06886a52009-11-08 14:54:08 +02001114 WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE);
1115 memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001116
Boaz Harrosh06886a52009-11-08 14:54:08 +02001117 ret = extract_attr_from_ios(ios, &attrs[1]);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001118 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001119 EXOFS_ERR("%s: extract_attr 1 of inode failed\n", __func__);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001120 goto out;
1121 }
1122 if (attrs[1].len) {
1123 layout = attrs[1].val_ptr;
1124 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1125 EXOFS_ERR("%s: unsupported files layout %d\n",
1126 __func__, layout->gen_func);
1127 ret = -ENOTSUPP;
1128 goto out;
1129 }
1130 }
1131
1132 ret = extract_attr_from_ios(ios, &attrs[2]);
1133 if (ret) {
Boaz Harrosh19350e72014-01-14 16:26:13 +02001134 EXOFS_ERR("%s: extract_attr 2 of inode failed\n", __func__);
Boaz Harroshd9c740d2010-01-28 11:58:08 +02001135 goto out;
1136 }
1137 if (attrs[2].len) {
1138 layout = attrs[2].val_ptr;
1139 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1140 EXOFS_ERR("%s: unsupported meta-data layout %d\n",
1141 __func__, layout->gen_func);
1142 ret = -ENOTSUPP;
1143 goto out;
1144 }
1145 }
1146
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001147out:
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001148 ore_put_io_state(ios);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001149 return ret;
1150}
1151
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001152static void __oi_init(struct exofs_i_info *oi)
1153{
1154 init_waitqueue_head(&oi->i_wq);
1155 oi->i_flags = 0;
1156}
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001157/*
1158 * Fill in an inode read from the OSD and set it up for use
1159 */
1160struct inode *exofs_iget(struct super_block *sb, unsigned long ino)
1161{
1162 struct exofs_i_info *oi;
1163 struct exofs_fcb fcb;
1164 struct inode *inode;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001165 int ret;
1166
1167 inode = iget_locked(sb, ino);
1168 if (!inode)
1169 return ERR_PTR(-ENOMEM);
1170 if (!(inode->i_state & I_NEW))
1171 return inode;
1172 oi = exofs_i(inode);
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001173 __oi_init(oi);
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001174 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001175 exofs_oi_objno(oi));
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001176
1177 /* read the inode from the osd */
Boaz Harrosh5d952b82010-02-01 13:35:51 +02001178 ret = exofs_get_inode(sb, oi, &fcb);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001179 if (ret)
1180 goto bad_inode;
1181
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001182 set_obj_created(oi);
1183
1184 /* copy stuff from on-disk struct to in-memory struct */
1185 inode->i_mode = le16_to_cpu(fcb.i_mode);
Eric W. Biedermand001b052012-02-10 11:11:19 -08001186 i_uid_write(inode, le32_to_cpu(fcb.i_uid));
1187 i_gid_write(inode, le32_to_cpu(fcb.i_gid));
Miklos Szeredibfe86842011-10-28 14:13:29 +02001188 set_nlink(inode, le16_to_cpu(fcb.i_links_count));
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001189 inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime);
1190 inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime);
1191 inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime);
1192 inode->i_ctime.tv_nsec =
1193 inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0;
1194 oi->i_commit_size = le64_to_cpu(fcb.i_size);
1195 i_size_write(inode, oi->i_commit_size);
1196 inode->i_blkbits = EXOFS_BLKSHIFT;
1197 inode->i_generation = le32_to_cpu(fcb.i_generation);
1198
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001199 oi->i_dir_start_lookup = 0;
1200
1201 if ((inode->i_nlink == 0) && (inode->i_mode == 0)) {
1202 ret = -ESTALE;
1203 goto bad_inode;
1204 }
1205
1206 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1207 if (fcb.i_data[0])
1208 inode->i_rdev =
1209 old_decode_dev(le32_to_cpu(fcb.i_data[0]));
1210 else
1211 inode->i_rdev =
1212 new_decode_dev(le32_to_cpu(fcb.i_data[1]));
1213 } else {
1214 memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data));
1215 }
1216
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -04001217 inode->i_mapping->backing_dev_info = sb->s_bdi;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001218 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)) {
1227 if (exofs_inode_is_fast_symlink(inode))
1228 inode->i_op = &exofs_fast_symlink_inode_operations;
1229 else {
1230 inode->i_op = &exofs_symlink_inode_operations;
1231 inode->i_mapping->a_ops = &exofs_aops;
1232 }
1233 } else {
1234 inode->i_op = &exofs_special_inode_operations;
1235 if (fcb.i_data[0])
1236 init_special_inode(inode, inode->i_mode,
1237 old_decode_dev(le32_to_cpu(fcb.i_data[0])));
1238 else
1239 init_special_inode(inode, inode->i_mode,
1240 new_decode_dev(le32_to_cpu(fcb.i_data[1])));
1241 }
1242
1243 unlock_new_inode(inode);
1244 return inode;
1245
1246bad_inode:
1247 iget_failed(inode);
1248 return ERR_PTR(ret);
1249}
1250
1251int __exofs_wait_obj_created(struct exofs_i_info *oi)
1252{
1253 if (!obj_created(oi)) {
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001254 EXOFS_DBGMSG("!obj_created\n");
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001255 BUG_ON(!obj_2bcreated(oi));
1256 wait_event(oi->i_wq, obj_created(oi));
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001257 EXOFS_DBGMSG("wait_event done\n");
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001258 }
1259 return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0;
1260}
Boaz Harrosh1cea3122011-02-03 17:53:25 +02001261
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001262/*
1263 * Callback function from exofs_new_inode(). The important thing is that we
1264 * set the obj_created flag so that other methods know that the object exists on
1265 * the OSD.
1266 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001267static void create_done(struct ore_io_state *ios, void *p)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001268{
1269 struct inode *inode = p;
1270 struct exofs_i_info *oi = exofs_i(inode);
1271 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
1272 int ret;
1273
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001274 ret = ore_check_io(ios, NULL);
1275 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001276
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001277 atomic_dec(&sbi->s_curr_pending);
1278
1279 if (unlikely(ret)) {
Joe Perches571f7f42010-10-21 22:17:17 -07001280 EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx",
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001281 _LLU(exofs_oi_objno(oi)),
1282 _LLU(oi->one_comp.obj.partition));
Boaz Harrosh06886a52009-11-08 14:54:08 +02001283 /*TODO: When FS is corrupted creation can fail, object already
1284 * exist. Get rid of this asynchronous creation, if exist
1285 * increment the obj counter and try the next object. Until we
1286 * succeed. All these dangling objects will be made into lost
1287 * files by chkfs.exofs
1288 */
1289 }
1290
1291 set_obj_created(oi);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001292
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001293 wake_up(&oi->i_wq);
1294}
1295
1296/*
1297 * Set up a new inode and create an object for it on the OSD
1298 */
Al Virobef41c22011-07-26 03:07:49 -04001299struct inode *exofs_new_inode(struct inode *dir, umode_t mode)
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001300{
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001301 struct super_block *sb = dir->i_sb;
1302 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001303 struct inode *inode;
1304 struct exofs_i_info *oi;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001305 struct ore_io_state *ios;
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001306 int ret;
1307
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001308 inode = new_inode(sb);
1309 if (!inode)
1310 return ERR_PTR(-ENOMEM);
1311
1312 oi = exofs_i(inode);
Boaz Harrosh9cfdc7a2009-08-04 20:40:29 +03001313 __oi_init(oi);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001314
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001315 set_obj_2bcreated(oi);
1316
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -04001317 inode->i_mapping->backing_dev_info = sb->s_bdi;
Dmitry Monakhove00117f2010-03-04 17:31:48 +03001318 inode_init_owner(inode, dir, mode);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001319 inode->i_ino = sbi->s_nextid++;
1320 inode->i_blkbits = EXOFS_BLKSHIFT;
1321 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1322 oi->i_commit_size = inode->i_size = 0;
1323 spin_lock(&sbi->s_next_gen_lock);
1324 inode->i_generation = sbi->s_next_generation++;
1325 spin_unlock(&sbi->s_next_gen_lock);
1326 insert_inode_hash(inode);
1327
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001328 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001329 exofs_oi_objno(oi));
Boaz Harrosh1cea3122011-02-03 17:53:25 +02001330 exofs_sbi_write_stats(sbi); /* Make sure new sbi->s_nextid is on disk */
1331
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001332 mark_inode_dirty(inode);
1333
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001334 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001335 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001336 EXOFS_ERR("exofs_new_inode: ore_get_io_state failed\n");
Boaz Harrosh06886a52009-11-08 14:54:08 +02001337 return ERR_PTR(ret);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001338 }
1339
Boaz Harrosh06886a52009-11-08 14:54:08 +02001340 ios->done = create_done;
1341 ios->private = inode;
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001342
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001343 ret = ore_create(ios);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001344 if (ret) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001345 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001346 return ERR_PTR(ret);
Boaz Harroshe6af00f2008-10-28 15:38:12 +02001347 }
1348 atomic_inc(&sbi->s_curr_pending);
1349
1350 return inode;
1351}
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001352
1353/*
1354 * struct to pass two arguments to update_inode's callback
1355 */
1356struct updatei_args {
1357 struct exofs_sb_info *sbi;
1358 struct exofs_fcb fcb;
1359};
1360
1361/*
1362 * Callback function from exofs_update_inode().
1363 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001364static void updatei_done(struct ore_io_state *ios, void *p)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001365{
1366 struct updatei_args *args = p;
1367
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001368 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001369
1370 atomic_dec(&args->sbi->s_curr_pending);
1371
1372 kfree(args);
1373}
1374
1375/*
1376 * Write the inode to the OSD. Just fill up the struct, and set the attribute
1377 * synchronously or asynchronously depending on the do_sync flag.
1378 */
1379static int exofs_update_inode(struct inode *inode, int do_sync)
1380{
1381 struct exofs_i_info *oi = exofs_i(inode);
1382 struct super_block *sb = inode->i_sb;
1383 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001384 struct ore_io_state *ios;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001385 struct osd_attr attr;
1386 struct exofs_fcb *fcb;
1387 struct updatei_args *args;
1388 int ret;
1389
1390 args = kzalloc(sizeof(*args), GFP_KERNEL);
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001391 if (!args) {
Joe Perches571f7f42010-10-21 22:17:17 -07001392 EXOFS_DBGMSG("Failed kzalloc of args\n");
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001393 return -ENOMEM;
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001394 }
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001395
1396 fcb = &args->fcb;
1397
1398 fcb->i_mode = cpu_to_le16(inode->i_mode);
Eric W. Biedermand001b052012-02-10 11:11:19 -08001399 fcb->i_uid = cpu_to_le32(i_uid_read(inode));
1400 fcb->i_gid = cpu_to_le32(i_gid_read(inode));
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001401 fcb->i_links_count = cpu_to_le16(inode->i_nlink);
1402 fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
1403 fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
1404 fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
1405 oi->i_commit_size = i_size_read(inode);
1406 fcb->i_size = cpu_to_le64(oi->i_commit_size);
1407 fcb->i_generation = cpu_to_le32(inode->i_generation);
1408
1409 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1410 if (old_valid_dev(inode->i_rdev)) {
1411 fcb->i_data[0] =
1412 cpu_to_le32(old_encode_dev(inode->i_rdev));
1413 fcb->i_data[1] = 0;
1414 } else {
1415 fcb->i_data[0] = 0;
1416 fcb->i_data[1] =
1417 cpu_to_le32(new_encode_dev(inode->i_rdev));
1418 fcb->i_data[2] = 0;
1419 }
1420 } else
1421 memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data));
1422
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001423 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001424 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001425 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001426 goto free_args;
1427 }
1428
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001429 attr = g_attr_inode_data;
1430 attr.val_ptr = fcb;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001431 ios->out_attr_len = 1;
1432 ios->out_attr = &attr;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001433
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001434 wait_obj_created(oi);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001435
Boaz Harrosh06886a52009-11-08 14:54:08 +02001436 if (!do_sync) {
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001437 args->sbi = sbi;
Boaz Harrosh06886a52009-11-08 14:54:08 +02001438 ios->done = updatei_done;
1439 ios->private = args;
1440 }
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001441
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001442 ret = ore_write(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001443 if (!do_sync && !ret) {
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001444 atomic_inc(&sbi->s_curr_pending);
1445 goto out; /* deallocation in updatei_done */
1446 }
1447
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001448 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001449free_args:
1450 kfree(args);
1451out:
Boaz Harrosh34ce4e7c2009-12-15 19:34:17 +02001452 EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n",
1453 inode->i_ino, do_sync, ret);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001454 return ret;
1455}
1456
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001457int exofs_write_inode(struct inode *inode, struct writeback_control *wbc)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001458{
Nick Piggin97178b72010-11-25 12:47:15 +02001459 /* FIXME: fix fsync and use wbc->sync_mode == WB_SYNC_ALL */
1460 return exofs_update_inode(inode, 1);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001461}
1462
1463/*
1464 * Callback function from exofs_delete_inode() - don't have much cleaning up to
1465 * do.
1466 */
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001467static void delete_done(struct ore_io_state *ios, void *p)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001468{
Boaz Harrosh06886a52009-11-08 14:54:08 +02001469 struct exofs_sb_info *sbi = p;
1470
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001471 ore_put_io_state(ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +02001472
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001473 atomic_dec(&sbi->s_curr_pending);
1474}
1475
1476/*
1477 * Called when the refcount of an inode reaches zero. We remove the object
1478 * from the OSD here. We make sure the object was created before we try and
1479 * delete it.
1480 */
Al Viro4ec70c92010-06-07 11:42:26 -04001481void exofs_evict_inode(struct inode *inode)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001482{
1483 struct exofs_i_info *oi = exofs_i(inode);
1484 struct super_block *sb = inode->i_sb;
1485 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001486 struct ore_io_state *ios;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001487 int ret;
1488
1489 truncate_inode_pages(&inode->i_data, 0);
1490
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001491 /* TODO: should do better here */
Al Viro4ec70c92010-06-07 11:42:26 -04001492 if (inode->i_nlink || is_bad_inode(inode))
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001493 goto no_delete;
1494
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001495 inode->i_size = 0;
Jan Karadbd57682012-05-03 14:48:02 +02001496 clear_inode(inode);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001497
Boaz Harroshfe2fd9e2010-10-16 19:14:01 +11001498 /* if we are deleting an obj that hasn't been created yet, wait.
1499 * This also makes sure that create_done cannot be called with an
1500 * already evicted inode.
1501 */
1502 wait_obj_created(oi);
1503 /* ignore the error, attempt a remove anyway */
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001504
1505 /* Now Remove the OSD objects */
Boaz Harrosh5bf696d2011-09-28 11:39:59 +03001506 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001507 if (unlikely(ret)) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001508 EXOFS_ERR("%s: ore_get_io_state failed\n", __func__);
Boaz Harrosh2f246fd2010-06-09 18:23:18 +03001509 return;
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001510 }
1511
Boaz Harrosh06886a52009-11-08 14:54:08 +02001512 ios->done = delete_done;
1513 ios->private = sbi;
Boaz Harrosh9e9db452011-08-05 15:06:04 -07001514
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001515 ret = ore_remove(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001516 if (ret) {
Boaz Harrosh8ff660a2011-08-06 19:26:31 -07001517 EXOFS_ERR("%s: ore_remove failed\n", __func__);
1518 ore_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001519 return;
1520 }
1521 atomic_inc(&sbi->s_curr_pending);
1522
1523 return;
1524
1525no_delete:
Jan Karadbd57682012-05-03 14:48:02 +02001526 clear_inode(inode);
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001527}