exofs: Fix __r4w_get_page when offset is beyond i_size
[deliverable/linux.git] / fs / exofs / inode.c
CommitLineData
e8062719
BH
1/*
2 * Copyright (C) 2005, 2006
27d2e149 3 * Avishay Traeger (avishay@gmail.com)
e8062719
BH
4 * 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
5a0e3ad6 34#include <linux/slab.h>
e8062719
BH
35
36#include "exofs.h"
37
fe33cc1e
BH
38#define EXOFS_DBGMSG2(M...) do {} while (0)
39
5a51c0c7 40enum {MAX_PAGES_KMALLOC = PAGE_SIZE / sizeof(struct page *), };
06886a5a 41
8ff660ab 42unsigned exofs_max_io_pages(struct ore_layout *layout,
66cd6cad 43 unsigned expected_pages)
44{
45 unsigned pages = min_t(unsigned, expected_pages, MAX_PAGES_KMALLOC);
46
47 /* TODO: easily support bio chaining */
5a51c0c7 48 pages = min_t(unsigned, pages, layout->max_io_length / PAGE_SIZE);
66cd6cad 49 return pages;
50}
51
beaec07b
BH
52struct page_collect {
53 struct exofs_sb_info *sbi;
beaec07b
BH
54 struct inode *inode;
55 unsigned expected_pages;
8ff660ab 56 struct ore_io_state *ios;
beaec07b 57
86093aaf
BH
58 struct page **pages;
59 unsigned alloc_pages;
beaec07b
BH
60 unsigned nr_pages;
61 unsigned long length;
62 loff_t pg_first; /* keep 64bit also in 32-arches */
f17b1f9f
BH
63 bool read_4_write; /* This means two things: that the read is sync
64 * And the pages should not be unlocked.
65 */
dd296619 66 struct page *that_locked_page;
beaec07b
BH
67};
68
69static void _pcol_init(struct page_collect *pcol, unsigned expected_pages,
06886a5a 70 struct inode *inode)
beaec07b
BH
71{
72 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
beaec07b
BH
73
74 pcol->sbi = sbi;
beaec07b
BH
75 pcol->inode = inode;
76 pcol->expected_pages = expected_pages;
77
06886a5a 78 pcol->ios = NULL;
86093aaf
BH
79 pcol->pages = NULL;
80 pcol->alloc_pages = 0;
beaec07b
BH
81 pcol->nr_pages = 0;
82 pcol->length = 0;
83 pcol->pg_first = -1;
f17b1f9f 84 pcol->read_4_write = false;
dd296619 85 pcol->that_locked_page = NULL;
beaec07b
BH
86}
87
88static void _pcol_reset(struct page_collect *pcol)
89{
90 pcol->expected_pages -= min(pcol->nr_pages, pcol->expected_pages);
91
86093aaf
BH
92 pcol->pages = NULL;
93 pcol->alloc_pages = 0;
beaec07b
BH
94 pcol->nr_pages = 0;
95 pcol->length = 0;
96 pcol->pg_first = -1;
06886a5a 97 pcol->ios = NULL;
dd296619 98 pcol->that_locked_page = NULL;
beaec07b
BH
99
100 /* this is probably the end of the loop but in writes
101 * it might not end here. don't be left with nothing
102 */
103 if (!pcol->expected_pages)
86093aaf 104 pcol->expected_pages = MAX_PAGES_KMALLOC;
beaec07b
BH
105}
106
107static int pcol_try_alloc(struct page_collect *pcol)
108{
66cd6cad 109 unsigned pages;
06886a5a 110
86093aaf 111 /* TODO: easily support bio chaining */
66cd6cad 112 pages = exofs_max_io_pages(&pcol->sbi->layout, pcol->expected_pages);
86093aaf 113
beaec07b 114 for (; pages; pages >>= 1) {
86093aaf
BH
115 pcol->pages = kmalloc(pages * sizeof(struct page *),
116 GFP_KERNEL);
117 if (likely(pcol->pages)) {
118 pcol->alloc_pages = pages;
beaec07b 119 return 0;
86093aaf 120 }
beaec07b
BH
121 }
122
86093aaf 123 EXOFS_ERR("Failed to kmalloc expected_pages=%u\n",
beaec07b
BH
124 pcol->expected_pages);
125 return -ENOMEM;
126}
127
128static void pcol_free(struct page_collect *pcol)
129{
86093aaf
BH
130 kfree(pcol->pages);
131 pcol->pages = NULL;
06886a5a
BH
132
133 if (pcol->ios) {
8ff660ab 134 ore_put_io_state(pcol->ios);
06886a5a
BH
135 pcol->ios = NULL;
136 }
beaec07b
BH
137}
138
139static int pcol_add_page(struct page_collect *pcol, struct page *page,
140 unsigned len)
141{
86093aaf 142 if (unlikely(pcol->nr_pages >= pcol->alloc_pages))
beaec07b
BH
143 return -ENOMEM;
144
86093aaf 145 pcol->pages[pcol->nr_pages++] = page;
beaec07b
BH
146 pcol->length += len;
147 return 0;
148}
149
154a9300 150enum {PAGE_WAS_NOT_IN_IO = 17};
beaec07b
BH
151static int update_read_page(struct page *page, int ret)
152{
154a9300
BH
153 switch (ret) {
154 case 0:
beaec07b
BH
155 /* Everything is OK */
156 SetPageUptodate(page);
157 if (PageError(page))
158 ClearPageError(page);
154a9300
BH
159 break;
160 case -EFAULT:
beaec07b
BH
161 /* In this case we were trying to read something that wasn't on
162 * disk yet - return a page full of zeroes. This should be OK,
163 * because the object should be empty (if there was a write
164 * before this read, the read would be waiting with the page
165 * locked */
166 clear_highpage(page);
167
168 SetPageUptodate(page);
169 if (PageError(page))
170 ClearPageError(page);
beaec07b 171 EXOFS_DBGMSG("recovered read error\n");
154a9300
BH
172 /* fall through */
173 case PAGE_WAS_NOT_IN_IO:
174 ret = 0; /* recovered error */
175 break;
176 default:
beaec07b 177 SetPageError(page);
154a9300 178 }
beaec07b
BH
179 return ret;
180}
181
182static void update_write_page(struct page *page, int ret)
183{
154a9300
BH
184 if (unlikely(ret == PAGE_WAS_NOT_IN_IO))
185 return; /* don't pass start don't collect $200 */
186
beaec07b
BH
187 if (ret) {
188 mapping_set_error(page->mapping, ret);
189 SetPageError(page);
190 }
191 end_page_writeback(page);
192}
193
194/* Called at the end of reads, to optionally unlock pages and update their
195 * status.
196 */
7aebf410 197static int __readpages_done(struct page_collect *pcol)
beaec07b 198{
beaec07b 199 int i;
beaec07b
BH
200 u64 good_bytes;
201 u64 length = 0;
4b46c9f5 202 int ret = ore_check_io(pcol->ios, NULL);
beaec07b 203
154a9300 204 if (likely(!ret)) {
beaec07b 205 good_bytes = pcol->length;
154a9300
BH
206 ret = PAGE_WAS_NOT_IN_IO;
207 } else {
4b46c9f5 208 good_bytes = 0;
154a9300 209 }
beaec07b 210
34ce4e7c 211 EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx"
beaec07b
BH
212 " length=0x%lx nr_pages=%u\n",
213 pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
214 pcol->nr_pages);
215
86093aaf
BH
216 for (i = 0; i < pcol->nr_pages; i++) {
217 struct page *page = pcol->pages[i];
beaec07b
BH
218 struct inode *inode = page->mapping->host;
219 int page_stat;
220
221 if (inode != pcol->inode)
222 continue; /* osd might add more pages at end */
223
224 if (likely(length < good_bytes))
225 page_stat = 0;
226 else
227 page_stat = ret;
228
fe33cc1e 229 EXOFS_DBGMSG2(" readpages_done(0x%lx, 0x%lx) %s\n",
beaec07b
BH
230 inode->i_ino, page->index,
231 page_stat ? "bad_bytes" : "good_bytes");
232
233 ret = update_read_page(page, page_stat);
7aebf410 234 if (!pcol->read_4_write)
beaec07b 235 unlock_page(page);
86093aaf 236 length += PAGE_SIZE;
beaec07b
BH
237 }
238
239 pcol_free(pcol);
34ce4e7c 240 EXOFS_DBGMSG2("readpages_done END\n");
beaec07b
BH
241 return ret;
242}
243
244/* callback of async reads */
8ff660ab 245static void readpages_done(struct ore_io_state *ios, void *p)
beaec07b
BH
246{
247 struct page_collect *pcol = p;
248
7aebf410 249 __readpages_done(pcol);
beaec07b 250 atomic_dec(&pcol->sbi->s_curr_pending);
06886a5a 251 kfree(pcol);
beaec07b
BH
252}
253
254static void _unlock_pcol_pages(struct page_collect *pcol, int ret, int rw)
255{
beaec07b
BH
256 int i;
257
86093aaf
BH
258 for (i = 0; i < pcol->nr_pages; i++) {
259 struct page *page = pcol->pages[i];
beaec07b
BH
260
261 if (rw == READ)
262 update_read_page(page, ret);
263 else
264 update_write_page(page, ret);
265
266 unlock_page(page);
267 }
beaec07b
BH
268}
269
b916c5cd
BH
270static int _maybe_not_all_in_one_io(struct ore_io_state *ios,
271 struct page_collect *pcol_src, struct page_collect *pcol)
272{
273 /* length was wrong or offset was not page aligned */
274 BUG_ON(pcol_src->nr_pages < ios->nr_pages);
275
276 if (pcol_src->nr_pages > ios->nr_pages) {
277 struct page **src_page;
278 unsigned pages_less = pcol_src->nr_pages - ios->nr_pages;
279 unsigned long len_less = pcol_src->length - ios->length;
280 unsigned i;
281 int ret;
282
283 /* This IO was trimmed */
284 pcol_src->nr_pages = ios->nr_pages;
285 pcol_src->length = ios->length;
286
287 /* Left over pages are passed to the next io */
288 pcol->expected_pages += pages_less;
289 pcol->nr_pages = pages_less;
290 pcol->length = len_less;
291 src_page = pcol_src->pages + pcol_src->nr_pages;
292 pcol->pg_first = (*src_page)->index;
293
294 ret = pcol_try_alloc(pcol);
295 if (unlikely(ret))
296 return ret;
297
298 for (i = 0; i < pages_less; ++i)
299 pcol->pages[i] = *src_page++;
300
301 EXOFS_DBGMSG("Length was adjusted nr_pages=0x%x "
302 "pages_less=0x%x expected_pages=0x%x "
303 "next_offset=0x%llx next_len=0x%lx\n",
304 pcol_src->nr_pages, pages_less, pcol->expected_pages,
305 pcol->pg_first * PAGE_SIZE, pcol->length);
306 }
307 return 0;
308}
309
7aebf410 310static int read_exec(struct page_collect *pcol)
beaec07b
BH
311{
312 struct exofs_i_info *oi = exofs_i(pcol->inode);
8ff660ab 313 struct ore_io_state *ios;
beaec07b 314 struct page_collect *pcol_copy = NULL;
beaec07b
BH
315 int ret;
316
86093aaf 317 if (!pcol->pages)
beaec07b
BH
318 return 0;
319
e1042ba0 320 if (!pcol->ios) {
5bf696da 321 int ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, true,
e1042ba0
BH
322 pcol->pg_first << PAGE_CACHE_SHIFT,
323 pcol->length, &pcol->ios);
324
325 if (ret)
326 return ret;
327 }
328
329 ios = pcol->ios;
86093aaf 330 ios->pages = pcol->pages;
beaec07b 331
7aebf410 332 if (pcol->read_4_write) {
8ff660ab 333 ore_read(pcol->ios);
7aebf410 334 return __readpages_done(pcol);
beaec07b
BH
335 }
336
337 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
338 if (!pcol_copy) {
339 ret = -ENOMEM;
340 goto err;
341 }
342
343 *pcol_copy = *pcol;
06886a5a
BH
344 ios->done = readpages_done;
345 ios->private = pcol_copy;
b916c5cd
BH
346
347 /* pages ownership was passed to pcol_copy */
348 _pcol_reset(pcol);
349
350 ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol);
351 if (unlikely(ret))
352 goto err;
353
354 EXOFS_DBGMSG2("read_exec(0x%lx) offset=0x%llx length=0x%llx\n",
355 pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length));
356
8ff660ab 357 ret = ore_read(ios);
beaec07b
BH
358 if (unlikely(ret))
359 goto err;
360
361 atomic_inc(&pcol->sbi->s_curr_pending);
362
beaec07b
BH
363 return 0;
364
365err:
7aebf410 366 if (!pcol->read_4_write)
beaec07b 367 _unlock_pcol_pages(pcol, ret, READ);
06886a5a
BH
368
369 pcol_free(pcol);
b76a3f93 370
beaec07b 371 kfree(pcol_copy);
beaec07b
BH
372 return ret;
373}
374
375/* readpage_strip is called either directly from readpage() or by the VFS from
376 * within read_cache_pages(), to add one more page to be read. It will try to
377 * collect as many contiguous pages as posible. If a discontinuity is
378 * encountered, or it runs out of resources, it will submit the previous segment
379 * and will start a new collection. Eventually caller must submit the last
380 * segment if present.
381 */
382static int readpage_strip(void *data, struct page *page)
383{
384 struct page_collect *pcol = data;
385 struct inode *inode = pcol->inode;
386 struct exofs_i_info *oi = exofs_i(inode);
387 loff_t i_size = i_size_read(inode);
388 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
389 size_t len;
390 int ret;
391
0e8d96dd
KC
392 BUG_ON(!PageLocked(page));
393
beaec07b
BH
394 /* FIXME: Just for debugging, will be removed */
395 if (PageUptodate(page))
396 EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino,
397 page->index);
398
dd296619
BH
399 pcol->that_locked_page = page;
400
beaec07b
BH
401 if (page->index < end_index)
402 len = PAGE_CACHE_SIZE;
403 else if (page->index == end_index)
404 len = i_size & ~PAGE_CACHE_MASK;
405 else
406 len = 0;
407
408 if (!len || !obj_created(oi)) {
409 /* this will be out of bounds, or doesn't exist yet.
410 * Current page is cleared and the request is split
411 */
412 clear_highpage(page);
413
414 SetPageUptodate(page);
415 if (PageError(page))
416 ClearPageError(page);
417
f17b1f9f
BH
418 if (!pcol->read_4_write)
419 unlock_page(page);
a8f1418f
BH
420 EXOFS_DBGMSG("readpage_strip(0x%lx) empty page len=%zx "
421 "read_4_write=%d index=0x%lx end_index=0x%lx "
422 "splitting\n", inode->i_ino, len,
423 pcol->read_4_write, page->index, end_index);
beaec07b 424
7aebf410 425 return read_exec(pcol);
beaec07b
BH
426 }
427
428try_again:
429
430 if (unlikely(pcol->pg_first == -1)) {
431 pcol->pg_first = page->index;
432 } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
433 page->index)) {
434 /* Discontinuity detected, split the request */
7aebf410 435 ret = read_exec(pcol);
beaec07b
BH
436 if (unlikely(ret))
437 goto fail;
438 goto try_again;
439 }
440
86093aaf 441 if (!pcol->pages) {
beaec07b
BH
442 ret = pcol_try_alloc(pcol);
443 if (unlikely(ret))
444 goto fail;
445 }
446
447 if (len != PAGE_CACHE_SIZE)
448 zero_user(page, len, PAGE_CACHE_SIZE - len);
449
fe33cc1e 450 EXOFS_DBGMSG2(" readpage_strip(0x%lx, 0x%lx) len=0x%zx\n",
beaec07b
BH
451 inode->i_ino, page->index, len);
452
453 ret = pcol_add_page(pcol, page, len);
454 if (ret) {
fe33cc1e 455 EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p "
beaec07b
BH
456 "this_len=0x%zx nr_pages=%u length=0x%lx\n",
457 page, len, pcol->nr_pages, pcol->length);
458
459 /* split the request, and start again with current page */
7aebf410 460 ret = read_exec(pcol);
beaec07b
BH
461 if (unlikely(ret))
462 goto fail;
463
464 goto try_again;
465 }
466
467 return 0;
468
469fail:
470 /* SetPageError(page); ??? */
471 unlock_page(page);
472 return ret;
473}
474
475static int exofs_readpages(struct file *file, struct address_space *mapping,
476 struct list_head *pages, unsigned nr_pages)
477{
478 struct page_collect pcol;
479 int ret;
480
481 _pcol_init(&pcol, nr_pages, mapping->host);
482
483 ret = read_cache_pages(mapping, pages, readpage_strip, &pcol);
484 if (ret) {
485 EXOFS_ERR("read_cache_pages => %d\n", ret);
486 return ret;
487 }
488
b916c5cd
BH
489 ret = read_exec(&pcol);
490 if (unlikely(ret))
491 return ret;
492
7aebf410 493 return read_exec(&pcol);
beaec07b
BH
494}
495
7aebf410 496static int _readpage(struct page *page, bool read_4_write)
beaec07b
BH
497{
498 struct page_collect pcol;
499 int ret;
500
501 _pcol_init(&pcol, 1, page->mapping->host);
502
7aebf410 503 pcol.read_4_write = read_4_write;
beaec07b
BH
504 ret = readpage_strip(&pcol, page);
505 if (ret) {
506 EXOFS_ERR("_readpage => %d\n", ret);
507 return ret;
508 }
509
7aebf410 510 return read_exec(&pcol);
beaec07b
BH
511}
512
513/*
514 * We don't need the file
515 */
516static int exofs_readpage(struct file *file, struct page *page)
517{
518 return _readpage(page, false);
519}
520
06886a5a 521/* Callback for osd_write. All writes are asynchronous */
8ff660ab 522static void writepages_done(struct ore_io_state *ios, void *p)
beaec07b
BH
523{
524 struct page_collect *pcol = p;
beaec07b 525 int i;
beaec07b
BH
526 u64 good_bytes;
527 u64 length = 0;
4b46c9f5 528 int ret = ore_check_io(ios, NULL);
beaec07b 529
beaec07b
BH
530 atomic_dec(&pcol->sbi->s_curr_pending);
531
154a9300 532 if (likely(!ret)) {
beaec07b 533 good_bytes = pcol->length;
154a9300
BH
534 ret = PAGE_WAS_NOT_IN_IO;
535 } else {
4b46c9f5 536 good_bytes = 0;
154a9300 537 }
beaec07b 538
34ce4e7c 539 EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx"
beaec07b
BH
540 " length=0x%lx nr_pages=%u\n",
541 pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
542 pcol->nr_pages);
543
86093aaf
BH
544 for (i = 0; i < pcol->nr_pages; i++) {
545 struct page *page = pcol->pages[i];
beaec07b
BH
546 struct inode *inode = page->mapping->host;
547 int page_stat;
548
549 if (inode != pcol->inode)
550 continue; /* osd might add more pages to a bio */
551
552 if (likely(length < good_bytes))
553 page_stat = 0;
554 else
555 page_stat = ret;
556
557 update_write_page(page, page_stat);
558 unlock_page(page);
fe33cc1e 559 EXOFS_DBGMSG2(" writepages_done(0x%lx, 0x%lx) status=%d\n",
beaec07b
BH
560 inode->i_ino, page->index, page_stat);
561
86093aaf 562 length += PAGE_SIZE;
beaec07b
BH
563 }
564
565 pcol_free(pcol);
566 kfree(pcol);
34ce4e7c 567 EXOFS_DBGMSG2("writepages_done END\n");
beaec07b
BH
568}
569
dd296619
BH
570static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
571{
572 struct page_collect *pcol = priv;
573 pgoff_t index = offset / PAGE_SIZE;
574
575 if (!pcol->that_locked_page ||
576 (pcol->that_locked_page->index != index)) {
4b74f6ea
BH
577 struct page *page;
578 loff_t i_size = i_size_read(pcol->inode);
dd296619 579
4b74f6ea
BH
580 if (offset >= i_size) {
581 *uptodate = true;
582 EXOFS_DBGMSG("offset >= i_size index=0x%lx\n", index);
583 return ZERO_PAGE(0);
584 }
585
586 page = find_get_page(pcol->inode->i_mapping, index);
dd296619
BH
587 if (!page) {
588 page = find_or_create_page(pcol->inode->i_mapping,
589 index, GFP_NOFS);
590 if (unlikely(!page)) {
591 EXOFS_DBGMSG("grab_cache_page Failed "
592 "index=0x%llx\n", _LLU(index));
593 return NULL;
594 }
595 unlock_page(page);
596 }
597 if (PageDirty(page) || PageWriteback(page))
598 *uptodate = true;
599 else
600 *uptodate = PageUptodate(page);
601 EXOFS_DBGMSG("index=0x%lx uptodate=%d\n", index, *uptodate);
602 return page;
603 } else {
604 EXOFS_DBGMSG("YES that_locked_page index=0x%lx\n",
605 pcol->that_locked_page->index);
606 *uptodate = true;
607 return pcol->that_locked_page;
608 }
609}
610
611static void __r4w_put_page(void *priv, struct page *page)
612{
613 struct page_collect *pcol = priv;
614
4b74f6ea 615 if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) {
dd296619
BH
616 EXOFS_DBGMSG("index=0x%lx\n", page->index);
617 page_cache_release(page);
618 return;
619 }
4b74f6ea
BH
620 EXOFS_DBGMSG("that_locked_page index=0x%lx\n",
621 ZERO_PAGE(0) == page ? -1 : page->index);
dd296619
BH
622}
623
624static const struct _ore_r4w_op _r4w_op = {
625 .get_page = &__r4w_get_page,
626 .put_page = &__r4w_put_page,
627};
628
beaec07b
BH
629static int write_exec(struct page_collect *pcol)
630{
631 struct exofs_i_info *oi = exofs_i(pcol->inode);
8ff660ab 632 struct ore_io_state *ios;
beaec07b 633 struct page_collect *pcol_copy = NULL;
beaec07b
BH
634 int ret;
635
86093aaf 636 if (!pcol->pages)
beaec07b
BH
637 return 0;
638
e1042ba0 639 BUG_ON(pcol->ios);
5bf696da 640 ret = ore_get_rw_state(&pcol->sbi->layout, &oi->oc, false,
e1042ba0
BH
641 pcol->pg_first << PAGE_CACHE_SHIFT,
642 pcol->length, &pcol->ios);
e1042ba0
BH
643 if (unlikely(ret))
644 goto err;
645
beaec07b
BH
646 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
647 if (!pcol_copy) {
571f7f46 648 EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n");
beaec07b
BH
649 ret = -ENOMEM;
650 goto err;
651 }
652
653 *pcol_copy = *pcol;
654
e1042ba0 655 ios = pcol->ios;
86093aaf 656 ios->pages = pcol_copy->pages;
06886a5a 657 ios->done = writepages_done;
dd296619 658 ios->r4w = &_r4w_op;
06886a5a
BH
659 ios->private = pcol_copy;
660
b916c5cd
BH
661 /* pages ownership was passed to pcol_copy */
662 _pcol_reset(pcol);
663
664 ret = _maybe_not_all_in_one_io(ios, pcol_copy, pcol);
665 if (unlikely(ret))
666 goto err;
667
668 EXOFS_DBGMSG2("write_exec(0x%lx) offset=0x%llx length=0x%llx\n",
669 pcol->inode->i_ino, _LLU(ios->offset), _LLU(ios->length));
670
8ff660ab 671 ret = ore_write(ios);
beaec07b 672 if (unlikely(ret)) {
8ff660ab 673 EXOFS_ERR("write_exec: ore_write() Failed\n");
beaec07b
BH
674 goto err;
675 }
676
677 atomic_inc(&pcol->sbi->s_curr_pending);
beaec07b
BH
678 return 0;
679
680err:
681 _unlock_pcol_pages(pcol, ret, WRITE);
06886a5a 682 pcol_free(pcol);
beaec07b 683 kfree(pcol_copy);
06886a5a 684
beaec07b
BH
685 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);
06886a5a
BH
728 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) "
729 "outside the limits\n",
730 inode->i_ino, page->index);
beaec07b
BH
731 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;
06886a5a
BH
745
746 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n",
747 inode->i_ino, page->index);
beaec07b
BH
748 goto try_again;
749 }
750
86093aaf 751 if (!pcol->pages) {
beaec07b
BH
752 ret = pcol_try_alloc(pcol);
753 if (unlikely(ret))
754 goto fail;
755 }
756
fe33cc1e 757 EXOFS_DBGMSG2(" writepage_strip(0x%lx, 0x%lx) len=0x%zx\n",
beaec07b
BH
758 inode->i_ino, page->index, len);
759
760 ret = pcol_add_page(pcol, page, len);
761 if (unlikely(ret)) {
34ce4e7c 762 EXOFS_DBGMSG2("Failed pcol_add_page "
beaec07b
BH
763 "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)) {
571f7f46 769 EXOFS_DBGMSG("write_exec failed => %d", ret);
beaec07b
BH
770 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:
06886a5a
BH
782 EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n",
783 inode->i_ino, page->index, ret);
beaec07b
BH
784 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)
06886a5a 802 expected_pages = end - start + 1;
beaec07b
BH
803 else
804 expected_pages = mapping->nrpages;
805
06886a5a
BH
806 if (expected_pages < 32L)
807 expected_pages = 32L;
808
34ce4e7c 809 EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx "
06886a5a 810 "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n",
beaec07b 811 mapping->host->i_ino, wbc->range_start, wbc->range_end,
06886a5a 812 mapping->nrpages, start, end, expected_pages);
beaec07b
BH
813
814 _pcol_init(&pcol, expected_pages, mapping->host);
815
816 ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol);
b916c5cd 817 if (unlikely(ret)) {
beaec07b
BH
818 EXOFS_ERR("write_cache_pages => %d\n", ret);
819 return ret;
820 }
821
b916c5cd
BH
822 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;
beaec07b
BH
841}
842
dd296619 843/*
beaec07b
BH
844static 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}
dd296619 859*/
2f246fd0
BH
860/* 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)
864 truncate_pagecache(inode, to, inode->i_size);
865}
866
beaec07b
BH
867int 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) {
571f7f46 879 EXOFS_DBGMSG("simple_write_begin failed\n");
2f246fd0 880 goto out;
beaec07b
BH
881 }
882
883 page = *pagep;
884 }
885
886 /* read modify write */
887 if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
a8f1418f
BH
888 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
beaec07b
BH
905 ret = _readpage(page, true);
906 if (ret) {
907 /*SetPageError was done by _readpage. Is it ok?*/
908 unlock_page(page);
a8f1418f 909 EXOFS_DBGMSG("__readpage failed\n");
beaec07b
BH
910 }
911 }
2f246fd0
BH
912out:
913 if (unlikely(ret))
914 _write_failed(mapping->host, pos + len);
beaec07b
BH
915
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
efd124b9
BH
930static 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);
2f246fd0
BH
940 if (unlikely(ret))
941 _write_failed(inode, pos + len);
942
943 /* TODO: once simple_write_end marks inode dirty remove */
efd124b9
BH
944 if (i_size != inode->i_size)
945 mark_inode_dirty(inode);
946 return ret;
947}
948
200b0700
BH
949static int exofs_releasepage(struct page *page, gfp_t gfp)
950{
951 EXOFS_DBGMSG("page 0x%lx\n", page->index);
952 WARN_ON(1);
85dc7878 953 return 0;
200b0700
BH
954}
955
956static void exofs_invalidatepage(struct page *page, unsigned long offset)
957{
85dc7878 958 EXOFS_DBGMSG("page 0x%lx offset 0x%lx\n", page->index, offset);
200b0700 959 WARN_ON(1);
200b0700
BH
960}
961
beaec07b
BH
962const struct address_space_operations exofs_aops = {
963 .readpage = exofs_readpage,
964 .readpages = exofs_readpages,
dd296619 965 .writepage = NULL,
beaec07b
BH
966 .writepages = exofs_writepages,
967 .write_begin = exofs_write_begin_export,
efd124b9 968 .write_end = exofs_write_end,
200b0700
BH
969 .releasepage = exofs_releasepage,
970 .set_page_dirty = __set_page_dirty_nobuffers,
971 .invalidatepage = exofs_invalidatepage,
972
973 /* Not implemented Yet */
974 .bmap = NULL, /* TODO: use osd's OSD_ACT_READ_MAP */
975 .direct_IO = NULL, /* TODO: Should be trivial to do */
976
977 /* With these NULL has special meaning or default is not exported */
200b0700
BH
978 .get_xip_mem = NULL,
979 .migratepage = NULL,
980 .launder_page = NULL,
981 .is_partially_uptodate = NULL,
982 .error_remove_page = NULL,
beaec07b
BH
983};
984
e8062719
BH
985/******************************************************************************
986 * INODE OPERATIONS
987 *****************************************************************************/
988
989/*
990 * Test whether an inode is a fast symlink.
991 */
992static inline int exofs_inode_is_fast_symlink(struct inode *inode)
993{
994 struct exofs_i_info *oi = exofs_i(inode);
995
996 return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0);
997}
998
2f246fd0 999static int _do_truncate(struct inode *inode, loff_t newsize)
06886a5a
BH
1000{
1001 struct exofs_i_info *oi = exofs_i(inode);
9e9db456 1002 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
06886a5a
BH
1003 int ret;
1004
1005 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1006
5bf696da 1007 ret = ore_truncate(&sbi->layout, &oi->oc, (u64)newsize);
2f246fd0
BH
1008 if (likely(!ret))
1009 truncate_setsize(inode, newsize);
06886a5a 1010
2f246fd0
BH
1011 EXOFS_DBGMSG("(0x%lx) size=0x%llx ret=>%d\n",
1012 inode->i_ino, newsize, ret);
06886a5a
BH
1013 return ret;
1014}
1015
e8062719 1016/*
2f246fd0
BH
1017 * Set inode attributes - update size attribute on OSD if needed,
1018 * otherwise just call generic functions.
e8062719
BH
1019 */
1020int exofs_setattr(struct dentry *dentry, struct iattr *iattr)
1021{
1022 struct inode *inode = dentry->d_inode;
1023 int error;
1024
2f246fd0
BH
1025 /* if we are about to modify an object, and it hasn't been
1026 * created yet, wait
1027 */
1028 error = wait_obj_created(exofs_i(inode));
1029 if (unlikely(error))
1030 return error;
1031
e8062719 1032 error = inode_change_ok(inode, iattr);
2f246fd0 1033 if (unlikely(error))
e8062719
BH
1034 return error;
1035
1025774c
CH
1036 if ((iattr->ia_valid & ATTR_SIZE) &&
1037 iattr->ia_size != i_size_read(inode)) {
2f246fd0
BH
1038 error = _do_truncate(inode, iattr->ia_size);
1039 if (unlikely(error))
1025774c
CH
1040 return error;
1041 }
1042
1043 setattr_copy(inode, iattr);
1044 mark_inode_dirty(inode);
1045 return 0;
e8062719 1046}
e6af00f1 1047
d9c740d2
BH
1048static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF(
1049 EXOFS_APAGE_FS_DATA,
1050 EXOFS_ATTR_INODE_FILE_LAYOUT,
1051 0);
1052static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF(
1053 EXOFS_APAGE_FS_DATA,
1054 EXOFS_ATTR_INODE_DIR_LAYOUT,
1055 0);
1056
e6af00f1 1057/*
5d952b83
BH
1058 * Read the Linux inode info from the OSD, and return it as is. In exofs the
1059 * inode info is in an application specific page/attribute of the osd-object.
e6af00f1
BH
1060 */
1061static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
5d952b83 1062 struct exofs_fcb *inode)
e6af00f1
BH
1063{
1064 struct exofs_sb_info *sbi = sb->s_fs_info;
d9c740d2
BH
1065 struct osd_attr attrs[] = {
1066 [0] = g_attr_inode_data,
1067 [1] = g_attr_inode_file_layout,
1068 [2] = g_attr_inode_dir_layout,
d9c740d2 1069 };
8ff660ab 1070 struct ore_io_state *ios;
d9c740d2 1071 struct exofs_on_disk_inode_layout *layout;
e6af00f1
BH
1072 int ret;
1073
5bf696da 1074 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
06886a5a 1075 if (unlikely(ret)) {
8ff660ab 1076 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
06886a5a 1077 return ret;
e6af00f1 1078 }
e6af00f1 1079
5bf696da
BH
1080 attrs[1].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
1081 attrs[2].len = exofs_on_disk_inode_layout_size(sbi->oc.numdevs);
d9c740d2 1082
06886a5a
BH
1083 ios->in_attr = attrs;
1084 ios->in_attr_len = ARRAY_SIZE(attrs);
e6af00f1 1085
8ff660ab 1086 ret = ore_read(ios);
96391e2b
BH
1087 if (unlikely(ret)) {
1088 EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n",
9e9db456 1089 _LLU(oi->one_comp.obj.id), ret);
96391e2b
BH
1090 memset(inode, 0, sizeof(*inode));
1091 inode->i_mode = 0040000 | (0777 & ~022);
1092 /* If object is lost on target we might as well enable it's
1093 * delete.
1094 */
1095 if ((ret == -ENOENT) || (ret == -EINVAL))
1096 ret = 0;
e6af00f1 1097 goto out;
96391e2b 1098 }
e6af00f1 1099
06886a5a 1100 ret = extract_attr_from_ios(ios, &attrs[0]);
e6af00f1 1101 if (ret) {
06886a5a 1102 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
e6af00f1
BH
1103 goto out;
1104 }
06886a5a
BH
1105 WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE);
1106 memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE);
e6af00f1 1107
06886a5a 1108 ret = extract_attr_from_ios(ios, &attrs[1]);
d9c740d2
BH
1109 if (ret) {
1110 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
1111 goto out;
1112 }
1113 if (attrs[1].len) {
1114 layout = attrs[1].val_ptr;
1115 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1116 EXOFS_ERR("%s: unsupported files layout %d\n",
1117 __func__, layout->gen_func);
1118 ret = -ENOTSUPP;
1119 goto out;
1120 }
1121 }
1122
1123 ret = extract_attr_from_ios(ios, &attrs[2]);
1124 if (ret) {
1125 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
1126 goto out;
1127 }
1128 if (attrs[2].len) {
1129 layout = attrs[2].val_ptr;
1130 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
1131 EXOFS_ERR("%s: unsupported meta-data layout %d\n",
1132 __func__, layout->gen_func);
1133 ret = -ENOTSUPP;
1134 goto out;
1135 }
1136 }
1137
e6af00f1 1138out:
8ff660ab 1139 ore_put_io_state(ios);
e6af00f1
BH
1140 return ret;
1141}
1142
9cfdc7aa
BH
1143static void __oi_init(struct exofs_i_info *oi)
1144{
1145 init_waitqueue_head(&oi->i_wq);
1146 oi->i_flags = 0;
1147}
e6af00f1
BH
1148/*
1149 * Fill in an inode read from the OSD and set it up for use
1150 */
1151struct inode *exofs_iget(struct super_block *sb, unsigned long ino)
1152{
1153 struct exofs_i_info *oi;
1154 struct exofs_fcb fcb;
1155 struct inode *inode;
e6af00f1
BH
1156 int ret;
1157
1158 inode = iget_locked(sb, ino);
1159 if (!inode)
1160 return ERR_PTR(-ENOMEM);
1161 if (!(inode->i_state & I_NEW))
1162 return inode;
1163 oi = exofs_i(inode);
9cfdc7aa 1164 __oi_init(oi);
5bf696da 1165 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
9e9db456 1166 exofs_oi_objno(oi));
e6af00f1
BH
1167
1168 /* read the inode from the osd */
5d952b83 1169 ret = exofs_get_inode(sb, oi, &fcb);
e6af00f1
BH
1170 if (ret)
1171 goto bad_inode;
1172
e6af00f1
BH
1173 set_obj_created(oi);
1174
1175 /* copy stuff from on-disk struct to in-memory struct */
1176 inode->i_mode = le16_to_cpu(fcb.i_mode);
1177 inode->i_uid = le32_to_cpu(fcb.i_uid);
1178 inode->i_gid = le32_to_cpu(fcb.i_gid);
bfe86848 1179 set_nlink(inode, le16_to_cpu(fcb.i_links_count));
e6af00f1
BH
1180 inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime);
1181 inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime);
1182 inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime);
1183 inode->i_ctime.tv_nsec =
1184 inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0;
1185 oi->i_commit_size = le64_to_cpu(fcb.i_size);
1186 i_size_write(inode, oi->i_commit_size);
1187 inode->i_blkbits = EXOFS_BLKSHIFT;
1188 inode->i_generation = le32_to_cpu(fcb.i_generation);
1189
e6af00f1
BH
1190 oi->i_dir_start_lookup = 0;
1191
1192 if ((inode->i_nlink == 0) && (inode->i_mode == 0)) {
1193 ret = -ESTALE;
1194 goto bad_inode;
1195 }
1196
1197 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1198 if (fcb.i_data[0])
1199 inode->i_rdev =
1200 old_decode_dev(le32_to_cpu(fcb.i_data[0]));
1201 else
1202 inode->i_rdev =
1203 new_decode_dev(le32_to_cpu(fcb.i_data[1]));
1204 } else {
1205 memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data));
1206 }
1207
66cd6cad 1208 inode->i_mapping->backing_dev_info = sb->s_bdi;
e6af00f1
BH
1209 if (S_ISREG(inode->i_mode)) {
1210 inode->i_op = &exofs_file_inode_operations;
1211 inode->i_fop = &exofs_file_operations;
1212 inode->i_mapping->a_ops = &exofs_aops;
1213 } else if (S_ISDIR(inode->i_mode)) {
1214 inode->i_op = &exofs_dir_inode_operations;
1215 inode->i_fop = &exofs_dir_operations;
1216 inode->i_mapping->a_ops = &exofs_aops;
1217 } else if (S_ISLNK(inode->i_mode)) {
1218 if (exofs_inode_is_fast_symlink(inode))
1219 inode->i_op = &exofs_fast_symlink_inode_operations;
1220 else {
1221 inode->i_op = &exofs_symlink_inode_operations;
1222 inode->i_mapping->a_ops = &exofs_aops;
1223 }
1224 } else {
1225 inode->i_op = &exofs_special_inode_operations;
1226 if (fcb.i_data[0])
1227 init_special_inode(inode, inode->i_mode,
1228 old_decode_dev(le32_to_cpu(fcb.i_data[0])));
1229 else
1230 init_special_inode(inode, inode->i_mode,
1231 new_decode_dev(le32_to_cpu(fcb.i_data[1])));
1232 }
1233
1234 unlock_new_inode(inode);
1235 return inode;
1236
1237bad_inode:
1238 iget_failed(inode);
1239 return ERR_PTR(ret);
1240}
1241
1242int __exofs_wait_obj_created(struct exofs_i_info *oi)
1243{
1244 if (!obj_created(oi)) {
fe2fd9ed 1245 EXOFS_DBGMSG("!obj_created\n");
e6af00f1
BH
1246 BUG_ON(!obj_2bcreated(oi));
1247 wait_event(oi->i_wq, obj_created(oi));
fe2fd9ed 1248 EXOFS_DBGMSG("wait_event done\n");
e6af00f1
BH
1249 }
1250 return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0;
1251}
1cea312a 1252
e6af00f1
BH
1253/*
1254 * Callback function from exofs_new_inode(). The important thing is that we
1255 * set the obj_created flag so that other methods know that the object exists on
1256 * the OSD.
1257 */
8ff660ab 1258static void create_done(struct ore_io_state *ios, void *p)
e6af00f1
BH
1259{
1260 struct inode *inode = p;
1261 struct exofs_i_info *oi = exofs_i(inode);
1262 struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
1263 int ret;
1264
8ff660ab
BH
1265 ret = ore_check_io(ios, NULL);
1266 ore_put_io_state(ios);
06886a5a 1267
e6af00f1
BH
1268 atomic_dec(&sbi->s_curr_pending);
1269
1270 if (unlikely(ret)) {
571f7f46 1271 EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx",
9e9db456
BH
1272 _LLU(exofs_oi_objno(oi)),
1273 _LLU(oi->one_comp.obj.partition));
06886a5a
BH
1274 /*TODO: When FS is corrupted creation can fail, object already
1275 * exist. Get rid of this asynchronous creation, if exist
1276 * increment the obj counter and try the next object. Until we
1277 * succeed. All these dangling objects will be made into lost
1278 * files by chkfs.exofs
1279 */
1280 }
1281
1282 set_obj_created(oi);
e6af00f1 1283
e6af00f1
BH
1284 wake_up(&oi->i_wq);
1285}
1286
1287/*
1288 * Set up a new inode and create an object for it on the OSD
1289 */
bef41c26 1290struct inode *exofs_new_inode(struct inode *dir, umode_t mode)
e6af00f1 1291{
9e9db456
BH
1292 struct super_block *sb = dir->i_sb;
1293 struct exofs_sb_info *sbi = sb->s_fs_info;
e6af00f1
BH
1294 struct inode *inode;
1295 struct exofs_i_info *oi;
8ff660ab 1296 struct ore_io_state *ios;
e6af00f1
BH
1297 int ret;
1298
e6af00f1
BH
1299 inode = new_inode(sb);
1300 if (!inode)
1301 return ERR_PTR(-ENOMEM);
1302
1303 oi = exofs_i(inode);
9cfdc7aa 1304 __oi_init(oi);
e6af00f1 1305
e6af00f1
BH
1306 set_obj_2bcreated(oi);
1307
66cd6cad 1308 inode->i_mapping->backing_dev_info = sb->s_bdi;
e00117f1 1309 inode_init_owner(inode, dir, mode);
e6af00f1
BH
1310 inode->i_ino = sbi->s_nextid++;
1311 inode->i_blkbits = EXOFS_BLKSHIFT;
1312 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1313 oi->i_commit_size = inode->i_size = 0;
1314 spin_lock(&sbi->s_next_gen_lock);
1315 inode->i_generation = sbi->s_next_generation++;
1316 spin_unlock(&sbi->s_next_gen_lock);
1317 insert_inode_hash(inode);
1318
5bf696da 1319 exofs_init_comps(&oi->oc, &oi->one_comp, sb->s_fs_info,
9e9db456 1320 exofs_oi_objno(oi));
1cea312a
BH
1321 exofs_sbi_write_stats(sbi); /* Make sure new sbi->s_nextid is on disk */
1322
e6af00f1
BH
1323 mark_inode_dirty(inode);
1324
5bf696da 1325 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
06886a5a 1326 if (unlikely(ret)) {
8ff660ab 1327 EXOFS_ERR("exofs_new_inode: ore_get_io_state failed\n");
06886a5a 1328 return ERR_PTR(ret);
e6af00f1
BH
1329 }
1330
06886a5a
BH
1331 ios->done = create_done;
1332 ios->private = inode;
9e9db456 1333
8ff660ab 1334 ret = ore_create(ios);
e6af00f1 1335 if (ret) {
8ff660ab 1336 ore_put_io_state(ios);
06886a5a 1337 return ERR_PTR(ret);
e6af00f1
BH
1338 }
1339 atomic_inc(&sbi->s_curr_pending);
1340
1341 return inode;
1342}
ba9e5e98
BH
1343
1344/*
1345 * struct to pass two arguments to update_inode's callback
1346 */
1347struct updatei_args {
1348 struct exofs_sb_info *sbi;
1349 struct exofs_fcb fcb;
1350};
1351
1352/*
1353 * Callback function from exofs_update_inode().
1354 */
8ff660ab 1355static void updatei_done(struct ore_io_state *ios, void *p)
ba9e5e98
BH
1356{
1357 struct updatei_args *args = p;
1358
8ff660ab 1359 ore_put_io_state(ios);
ba9e5e98
BH
1360
1361 atomic_dec(&args->sbi->s_curr_pending);
1362
1363 kfree(args);
1364}
1365
1366/*
1367 * Write the inode to the OSD. Just fill up the struct, and set the attribute
1368 * synchronously or asynchronously depending on the do_sync flag.
1369 */
1370static int exofs_update_inode(struct inode *inode, int do_sync)
1371{
1372 struct exofs_i_info *oi = exofs_i(inode);
1373 struct super_block *sb = inode->i_sb;
1374 struct exofs_sb_info *sbi = sb->s_fs_info;
8ff660ab 1375 struct ore_io_state *ios;
ba9e5e98
BH
1376 struct osd_attr attr;
1377 struct exofs_fcb *fcb;
1378 struct updatei_args *args;
1379 int ret;
1380
1381 args = kzalloc(sizeof(*args), GFP_KERNEL);
34ce4e7c 1382 if (!args) {
571f7f46 1383 EXOFS_DBGMSG("Failed kzalloc of args\n");
ba9e5e98 1384 return -ENOMEM;
34ce4e7c 1385 }
ba9e5e98
BH
1386
1387 fcb = &args->fcb;
1388
1389 fcb->i_mode = cpu_to_le16(inode->i_mode);
1390 fcb->i_uid = cpu_to_le32(inode->i_uid);
1391 fcb->i_gid = cpu_to_le32(inode->i_gid);
1392 fcb->i_links_count = cpu_to_le16(inode->i_nlink);
1393 fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
1394 fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
1395 fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
1396 oi->i_commit_size = i_size_read(inode);
1397 fcb->i_size = cpu_to_le64(oi->i_commit_size);
1398 fcb->i_generation = cpu_to_le32(inode->i_generation);
1399
1400 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1401 if (old_valid_dev(inode->i_rdev)) {
1402 fcb->i_data[0] =
1403 cpu_to_le32(old_encode_dev(inode->i_rdev));
1404 fcb->i_data[1] = 0;
1405 } else {
1406 fcb->i_data[0] = 0;
1407 fcb->i_data[1] =
1408 cpu_to_le32(new_encode_dev(inode->i_rdev));
1409 fcb->i_data[2] = 0;
1410 }
1411 } else
1412 memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data));
1413
5bf696da 1414 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
06886a5a 1415 if (unlikely(ret)) {
8ff660ab 1416 EXOFS_ERR("%s: ore_get_io_state failed.\n", __func__);
ba9e5e98
BH
1417 goto free_args;
1418 }
1419
ba9e5e98
BH
1420 attr = g_attr_inode_data;
1421 attr.val_ptr = fcb;
06886a5a
BH
1422 ios->out_attr_len = 1;
1423 ios->out_attr = &attr;
ba9e5e98 1424
fe2fd9ed 1425 wait_obj_created(oi);
ba9e5e98 1426
06886a5a 1427 if (!do_sync) {
ba9e5e98 1428 args->sbi = sbi;
06886a5a
BH
1429 ios->done = updatei_done;
1430 ios->private = args;
1431 }
ba9e5e98 1432
8ff660ab 1433 ret = ore_write(ios);
06886a5a 1434 if (!do_sync && !ret) {
ba9e5e98
BH
1435 atomic_inc(&sbi->s_curr_pending);
1436 goto out; /* deallocation in updatei_done */
1437 }
1438
8ff660ab 1439 ore_put_io_state(ios);
ba9e5e98
BH
1440free_args:
1441 kfree(args);
1442out:
34ce4e7c
BH
1443 EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n",
1444 inode->i_ino, do_sync, ret);
ba9e5e98
BH
1445 return ret;
1446}
1447
a9185b41 1448int exofs_write_inode(struct inode *inode, struct writeback_control *wbc)
ba9e5e98 1449{
97178b7b
NP
1450 /* FIXME: fix fsync and use wbc->sync_mode == WB_SYNC_ALL */
1451 return exofs_update_inode(inode, 1);
ba9e5e98
BH
1452}
1453
1454/*
1455 * Callback function from exofs_delete_inode() - don't have much cleaning up to
1456 * do.
1457 */
8ff660ab 1458static void delete_done(struct ore_io_state *ios, void *p)
ba9e5e98 1459{
06886a5a
BH
1460 struct exofs_sb_info *sbi = p;
1461
8ff660ab 1462 ore_put_io_state(ios);
06886a5a 1463
ba9e5e98
BH
1464 atomic_dec(&sbi->s_curr_pending);
1465}
1466
1467/*
1468 * Called when the refcount of an inode reaches zero. We remove the object
1469 * from the OSD here. We make sure the object was created before we try and
1470 * delete it.
1471 */
4ec70c9b 1472void exofs_evict_inode(struct inode *inode)
ba9e5e98
BH
1473{
1474 struct exofs_i_info *oi = exofs_i(inode);
1475 struct super_block *sb = inode->i_sb;
1476 struct exofs_sb_info *sbi = sb->s_fs_info;
8ff660ab 1477 struct ore_io_state *ios;
ba9e5e98
BH
1478 int ret;
1479
1480 truncate_inode_pages(&inode->i_data, 0);
1481
2f246fd0 1482 /* TODO: should do better here */
4ec70c9b 1483 if (inode->i_nlink || is_bad_inode(inode))
ba9e5e98
BH
1484 goto no_delete;
1485
ba9e5e98 1486 inode->i_size = 0;
dbd5768f 1487 clear_inode(inode);
ba9e5e98 1488
fe2fd9ed
BH
1489 /* if we are deleting an obj that hasn't been created yet, wait.
1490 * This also makes sure that create_done cannot be called with an
1491 * already evicted inode.
1492 */
1493 wait_obj_created(oi);
1494 /* ignore the error, attempt a remove anyway */
2f246fd0
BH
1495
1496 /* Now Remove the OSD objects */
5bf696da 1497 ret = ore_get_io_state(&sbi->layout, &oi->oc, &ios);
2f246fd0 1498 if (unlikely(ret)) {
8ff660ab 1499 EXOFS_ERR("%s: ore_get_io_state failed\n", __func__);
2f246fd0 1500 return;
ba9e5e98
BH
1501 }
1502
06886a5a
BH
1503 ios->done = delete_done;
1504 ios->private = sbi;
9e9db456 1505
8ff660ab 1506 ret = ore_remove(ios);
ba9e5e98 1507 if (ret) {
8ff660ab
BH
1508 EXOFS_ERR("%s: ore_remove failed\n", __func__);
1509 ore_put_io_state(ios);
ba9e5e98
BH
1510 return;
1511 }
1512 atomic_inc(&sbi->s_curr_pending);
1513
1514 return;
1515
1516no_delete:
dbd5768f 1517 clear_inode(inode);
ba9e5e98 1518}
This page took 0.264169 seconds and 5 git commands to generate.