remove inode_setattr
[linux-block.git] / fs / exofs / inode.c
1 /*
2  * Copyright (C) 2005, 2006
3  * Avishay Traeger (avishay@gmail.com)
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
34 #include <linux/slab.h>
35 #include <linux/writeback.h>
36 #include <linux/buffer_head.h>
37 #include <scsi/scsi_device.h>
38
39 #include "exofs.h"
40
41 #define EXOFS_DBGMSG2(M...) do {} while (0)
42
43 enum { BIO_MAX_PAGES_KMALLOC =
44                 (PAGE_SIZE - sizeof(struct bio)) / sizeof(struct bio_vec),
45         MAX_PAGES_KMALLOC =
46                 PAGE_SIZE / sizeof(struct page *),
47 };
48
49 struct page_collect {
50         struct exofs_sb_info *sbi;
51         struct inode *inode;
52         unsigned expected_pages;
53         struct exofs_io_state *ios;
54
55         struct page **pages;
56         unsigned alloc_pages;
57         unsigned nr_pages;
58         unsigned long length;
59         loff_t pg_first; /* keep 64bit also in 32-arches */
60 };
61
62 static void _pcol_init(struct page_collect *pcol, unsigned expected_pages,
63                        struct inode *inode)
64 {
65         struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
66
67         pcol->sbi = sbi;
68         pcol->inode = inode;
69         pcol->expected_pages = expected_pages;
70
71         pcol->ios = NULL;
72         pcol->pages = NULL;
73         pcol->alloc_pages = 0;
74         pcol->nr_pages = 0;
75         pcol->length = 0;
76         pcol->pg_first = -1;
77 }
78
79 static void _pcol_reset(struct page_collect *pcol)
80 {
81         pcol->expected_pages -= min(pcol->nr_pages, pcol->expected_pages);
82
83         pcol->pages = NULL;
84         pcol->alloc_pages = 0;
85         pcol->nr_pages = 0;
86         pcol->length = 0;
87         pcol->pg_first = -1;
88         pcol->ios = NULL;
89
90         /* this is probably the end of the loop but in writes
91          * it might not end here. don't be left with nothing
92          */
93         if (!pcol->expected_pages)
94                 pcol->expected_pages = MAX_PAGES_KMALLOC;
95 }
96
97 static int pcol_try_alloc(struct page_collect *pcol)
98 {
99         unsigned pages = min_t(unsigned, pcol->expected_pages,
100                           MAX_PAGES_KMALLOC);
101
102         if (!pcol->ios) { /* First time allocate io_state */
103                 int ret = exofs_get_io_state(&pcol->sbi->layout, &pcol->ios);
104
105                 if (ret)
106                         return ret;
107         }
108
109         /* TODO: easily support bio chaining */
110         pages =  min_t(unsigned, pages,
111                        pcol->sbi->layout.group_width * BIO_MAX_PAGES_KMALLOC);
112
113         for (; pages; pages >>= 1) {
114                 pcol->pages = kmalloc(pages * sizeof(struct page *),
115                                       GFP_KERNEL);
116                 if (likely(pcol->pages)) {
117                         pcol->alloc_pages = pages;
118                         return 0;
119                 }
120         }
121
122         EXOFS_ERR("Failed to kmalloc expected_pages=%u\n",
123                   pcol->expected_pages);
124         return -ENOMEM;
125 }
126
127 static void pcol_free(struct page_collect *pcol)
128 {
129         kfree(pcol->pages);
130         pcol->pages = NULL;
131
132         if (pcol->ios) {
133                 exofs_put_io_state(pcol->ios);
134                 pcol->ios = NULL;
135         }
136 }
137
138 static int pcol_add_page(struct page_collect *pcol, struct page *page,
139                          unsigned len)
140 {
141         if (unlikely(pcol->nr_pages >= pcol->alloc_pages))
142                 return -ENOMEM;
143
144         pcol->pages[pcol->nr_pages++] = page;
145         pcol->length += len;
146         return 0;
147 }
148
149 static int update_read_page(struct page *page, int ret)
150 {
151         if (ret == 0) {
152                 /* Everything is OK */
153                 SetPageUptodate(page);
154                 if (PageError(page))
155                         ClearPageError(page);
156         } else if (ret == -EFAULT) {
157                 /* In this case we were trying to read something that wasn't on
158                  * disk yet - return a page full of zeroes.  This should be OK,
159                  * because the object should be empty (if there was a write
160                  * before this read, the read would be waiting with the page
161                  * locked */
162                 clear_highpage(page);
163
164                 SetPageUptodate(page);
165                 if (PageError(page))
166                         ClearPageError(page);
167                 ret = 0; /* recovered error */
168                 EXOFS_DBGMSG("recovered read error\n");
169         } else /* Error */
170                 SetPageError(page);
171
172         return ret;
173 }
174
175 static void update_write_page(struct page *page, int ret)
176 {
177         if (ret) {
178                 mapping_set_error(page->mapping, ret);
179                 SetPageError(page);
180         }
181         end_page_writeback(page);
182 }
183
184 /* Called at the end of reads, to optionally unlock pages and update their
185  * status.
186  */
187 static int __readpages_done(struct page_collect *pcol, bool do_unlock)
188 {
189         int i;
190         u64 resid;
191         u64 good_bytes;
192         u64 length = 0;
193         int ret = exofs_check_io(pcol->ios, &resid);
194
195         if (likely(!ret))
196                 good_bytes = pcol->length;
197         else
198                 good_bytes = pcol->length - resid;
199
200         EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx"
201                      " length=0x%lx nr_pages=%u\n",
202                      pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
203                      pcol->nr_pages);
204
205         for (i = 0; i < pcol->nr_pages; i++) {
206                 struct page *page = pcol->pages[i];
207                 struct inode *inode = page->mapping->host;
208                 int page_stat;
209
210                 if (inode != pcol->inode)
211                         continue; /* osd might add more pages at end */
212
213                 if (likely(length < good_bytes))
214                         page_stat = 0;
215                 else
216                         page_stat = ret;
217
218                 EXOFS_DBGMSG2("    readpages_done(0x%lx, 0x%lx) %s\n",
219                           inode->i_ino, page->index,
220                           page_stat ? "bad_bytes" : "good_bytes");
221
222                 ret = update_read_page(page, page_stat);
223                 if (do_unlock)
224                         unlock_page(page);
225                 length += PAGE_SIZE;
226         }
227
228         pcol_free(pcol);
229         EXOFS_DBGMSG2("readpages_done END\n");
230         return ret;
231 }
232
233 /* callback of async reads */
234 static void readpages_done(struct exofs_io_state *ios, void *p)
235 {
236         struct page_collect *pcol = p;
237
238         __readpages_done(pcol, true);
239         atomic_dec(&pcol->sbi->s_curr_pending);
240         kfree(pcol);
241 }
242
243 static void _unlock_pcol_pages(struct page_collect *pcol, int ret, int rw)
244 {
245         int i;
246
247         for (i = 0; i < pcol->nr_pages; i++) {
248                 struct page *page = pcol->pages[i];
249
250                 if (rw == READ)
251                         update_read_page(page, ret);
252                 else
253                         update_write_page(page, ret);
254
255                 unlock_page(page);
256         }
257 }
258
259 static int read_exec(struct page_collect *pcol, bool is_sync)
260 {
261         struct exofs_i_info *oi = exofs_i(pcol->inode);
262         struct exofs_io_state *ios = pcol->ios;
263         struct page_collect *pcol_copy = NULL;
264         int ret;
265
266         if (!pcol->pages)
267                 return 0;
268
269         /* see comment in _readpage() about sync reads */
270         WARN_ON(is_sync && (pcol->nr_pages != 1));
271
272         ios->pages = pcol->pages;
273         ios->nr_pages = pcol->nr_pages;
274         ios->length = pcol->length;
275         ios->offset = pcol->pg_first << PAGE_CACHE_SHIFT;
276
277         if (is_sync) {
278                 exofs_oi_read(oi, pcol->ios);
279                 return __readpages_done(pcol, false);
280         }
281
282         pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
283         if (!pcol_copy) {
284                 ret = -ENOMEM;
285                 goto err;
286         }
287
288         *pcol_copy = *pcol;
289         ios->done = readpages_done;
290         ios->private = pcol_copy;
291         ret = exofs_oi_read(oi, ios);
292         if (unlikely(ret))
293                 goto err;
294
295         atomic_inc(&pcol->sbi->s_curr_pending);
296
297         EXOFS_DBGMSG2("read_exec obj=0x%llx start=0x%llx length=0x%lx\n",
298                   ios->obj.id, _LLU(ios->offset), pcol->length);
299
300         /* pages ownership was passed to pcol_copy */
301         _pcol_reset(pcol);
302         return 0;
303
304 err:
305         if (!is_sync)
306                 _unlock_pcol_pages(pcol, ret, READ);
307
308         pcol_free(pcol);
309
310         kfree(pcol_copy);
311         return ret;
312 }
313
314 /* readpage_strip is called either directly from readpage() or by the VFS from
315  * within read_cache_pages(), to add one more page to be read. It will try to
316  * collect as many contiguous pages as posible. If a discontinuity is
317  * encountered, or it runs out of resources, it will submit the previous segment
318  * and will start a new collection. Eventually caller must submit the last
319  * segment if present.
320  */
321 static int readpage_strip(void *data, struct page *page)
322 {
323         struct page_collect *pcol = data;
324         struct inode *inode = pcol->inode;
325         struct exofs_i_info *oi = exofs_i(inode);
326         loff_t i_size = i_size_read(inode);
327         pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
328         size_t len;
329         int ret;
330
331         /* FIXME: Just for debugging, will be removed */
332         if (PageUptodate(page))
333                 EXOFS_ERR("PageUptodate(0x%lx, 0x%lx)\n", pcol->inode->i_ino,
334                           page->index);
335
336         if (page->index < end_index)
337                 len = PAGE_CACHE_SIZE;
338         else if (page->index == end_index)
339                 len = i_size & ~PAGE_CACHE_MASK;
340         else
341                 len = 0;
342
343         if (!len || !obj_created(oi)) {
344                 /* this will be out of bounds, or doesn't exist yet.
345                  * Current page is cleared and the request is split
346                  */
347                 clear_highpage(page);
348
349                 SetPageUptodate(page);
350                 if (PageError(page))
351                         ClearPageError(page);
352
353                 unlock_page(page);
354                 EXOFS_DBGMSG("readpage_strip(0x%lx, 0x%lx) empty page,"
355                              " splitting\n", inode->i_ino, page->index);
356
357                 return read_exec(pcol, false);
358         }
359
360 try_again:
361
362         if (unlikely(pcol->pg_first == -1)) {
363                 pcol->pg_first = page->index;
364         } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
365                    page->index)) {
366                 /* Discontinuity detected, split the request */
367                 ret = read_exec(pcol, false);
368                 if (unlikely(ret))
369                         goto fail;
370                 goto try_again;
371         }
372
373         if (!pcol->pages) {
374                 ret = pcol_try_alloc(pcol);
375                 if (unlikely(ret))
376                         goto fail;
377         }
378
379         if (len != PAGE_CACHE_SIZE)
380                 zero_user(page, len, PAGE_CACHE_SIZE - len);
381
382         EXOFS_DBGMSG2("    readpage_strip(0x%lx, 0x%lx) len=0x%zx\n",
383                      inode->i_ino, page->index, len);
384
385         ret = pcol_add_page(pcol, page, len);
386         if (ret) {
387                 EXOFS_DBGMSG2("Failed pcol_add_page pages[i]=%p "
388                           "this_len=0x%zx nr_pages=%u length=0x%lx\n",
389                           page, len, pcol->nr_pages, pcol->length);
390
391                 /* split the request, and start again with current page */
392                 ret = read_exec(pcol, false);
393                 if (unlikely(ret))
394                         goto fail;
395
396                 goto try_again;
397         }
398
399         return 0;
400
401 fail:
402         /* SetPageError(page); ??? */
403         unlock_page(page);
404         return ret;
405 }
406
407 static int exofs_readpages(struct file *file, struct address_space *mapping,
408                            struct list_head *pages, unsigned nr_pages)
409 {
410         struct page_collect pcol;
411         int ret;
412
413         _pcol_init(&pcol, nr_pages, mapping->host);
414
415         ret = read_cache_pages(mapping, pages, readpage_strip, &pcol);
416         if (ret) {
417                 EXOFS_ERR("read_cache_pages => %d\n", ret);
418                 return ret;
419         }
420
421         return read_exec(&pcol, false);
422 }
423
424 static int _readpage(struct page *page, bool is_sync)
425 {
426         struct page_collect pcol;
427         int ret;
428
429         _pcol_init(&pcol, 1, page->mapping->host);
430
431         /* readpage_strip might call read_exec(,is_sync==false) at several
432          * places but not if we have a single page.
433          */
434         ret = readpage_strip(&pcol, page);
435         if (ret) {
436                 EXOFS_ERR("_readpage => %d\n", ret);
437                 return ret;
438         }
439
440         return read_exec(&pcol, is_sync);
441 }
442
443 /*
444  * We don't need the file
445  */
446 static int exofs_readpage(struct file *file, struct page *page)
447 {
448         return _readpage(page, false);
449 }
450
451 /* Callback for osd_write. All writes are asynchronous */
452 static void writepages_done(struct exofs_io_state *ios, void *p)
453 {
454         struct page_collect *pcol = p;
455         int i;
456         u64 resid;
457         u64  good_bytes;
458         u64  length = 0;
459         int ret = exofs_check_io(ios, &resid);
460
461         atomic_dec(&pcol->sbi->s_curr_pending);
462
463         if (likely(!ret))
464                 good_bytes = pcol->length;
465         else
466                 good_bytes = pcol->length - resid;
467
468         EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx"
469                      " length=0x%lx nr_pages=%u\n",
470                      pcol->inode->i_ino, _LLU(good_bytes), pcol->length,
471                      pcol->nr_pages);
472
473         for (i = 0; i < pcol->nr_pages; i++) {
474                 struct page *page = pcol->pages[i];
475                 struct inode *inode = page->mapping->host;
476                 int page_stat;
477
478                 if (inode != pcol->inode)
479                         continue; /* osd might add more pages to a bio */
480
481                 if (likely(length < good_bytes))
482                         page_stat = 0;
483                 else
484                         page_stat = ret;
485
486                 update_write_page(page, page_stat);
487                 unlock_page(page);
488                 EXOFS_DBGMSG2("    writepages_done(0x%lx, 0x%lx) status=%d\n",
489                              inode->i_ino, page->index, page_stat);
490
491                 length += PAGE_SIZE;
492         }
493
494         pcol_free(pcol);
495         kfree(pcol);
496         EXOFS_DBGMSG2("writepages_done END\n");
497 }
498
499 static int write_exec(struct page_collect *pcol)
500 {
501         struct exofs_i_info *oi = exofs_i(pcol->inode);
502         struct exofs_io_state *ios = pcol->ios;
503         struct page_collect *pcol_copy = NULL;
504         int ret;
505
506         if (!pcol->pages)
507                 return 0;
508
509         pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
510         if (!pcol_copy) {
511                 EXOFS_ERR("write_exec: Faild to kmalloc(pcol)\n");
512                 ret = -ENOMEM;
513                 goto err;
514         }
515
516         *pcol_copy = *pcol;
517
518         ios->pages = pcol_copy->pages;
519         ios->nr_pages = pcol_copy->nr_pages;
520         ios->offset = pcol_copy->pg_first << PAGE_CACHE_SHIFT;
521         ios->length = pcol_copy->length;
522         ios->done = writepages_done;
523         ios->private = pcol_copy;
524
525         ret = exofs_oi_write(oi, ios);
526         if (unlikely(ret)) {
527                 EXOFS_ERR("write_exec: exofs_oi_write() Faild\n");
528                 goto err;
529         }
530
531         atomic_inc(&pcol->sbi->s_curr_pending);
532         EXOFS_DBGMSG2("write_exec(0x%lx, 0x%llx) start=0x%llx length=0x%lx\n",
533                   pcol->inode->i_ino, pcol->pg_first, _LLU(ios->offset),
534                   pcol->length);
535         /* pages ownership was passed to pcol_copy */
536         _pcol_reset(pcol);
537         return 0;
538
539 err:
540         _unlock_pcol_pages(pcol, ret, WRITE);
541         pcol_free(pcol);
542         kfree(pcol_copy);
543
544         return ret;
545 }
546
547 /* writepage_strip is called either directly from writepage() or by the VFS from
548  * within write_cache_pages(), to add one more page to be written to storage.
549  * It will try to collect as many contiguous pages as possible. If a
550  * discontinuity is encountered or it runs out of resources it will submit the
551  * previous segment and will start a new collection.
552  * Eventually caller must submit the last segment if present.
553  */
554 static int writepage_strip(struct page *page,
555                            struct writeback_control *wbc_unused, void *data)
556 {
557         struct page_collect *pcol = data;
558         struct inode *inode = pcol->inode;
559         struct exofs_i_info *oi = exofs_i(inode);
560         loff_t i_size = i_size_read(inode);
561         pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
562         size_t len;
563         int ret;
564
565         BUG_ON(!PageLocked(page));
566
567         ret = wait_obj_created(oi);
568         if (unlikely(ret))
569                 goto fail;
570
571         if (page->index < end_index)
572                 /* in this case, the page is within the limits of the file */
573                 len = PAGE_CACHE_SIZE;
574         else {
575                 len = i_size & ~PAGE_CACHE_MASK;
576
577                 if (page->index > end_index || !len) {
578                         /* in this case, the page is outside the limits
579                          * (truncate in progress)
580                          */
581                         ret = write_exec(pcol);
582                         if (unlikely(ret))
583                                 goto fail;
584                         if (PageError(page))
585                                 ClearPageError(page);
586                         unlock_page(page);
587                         EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) "
588                                      "outside the limits\n",
589                                      inode->i_ino, page->index);
590                         return 0;
591                 }
592         }
593
594 try_again:
595
596         if (unlikely(pcol->pg_first == -1)) {
597                 pcol->pg_first = page->index;
598         } else if (unlikely((pcol->pg_first + pcol->nr_pages) !=
599                    page->index)) {
600                 /* Discontinuity detected, split the request */
601                 ret = write_exec(pcol);
602                 if (unlikely(ret))
603                         goto fail;
604
605                 EXOFS_DBGMSG("writepage_strip(0x%lx, 0x%lx) Discontinuity\n",
606                              inode->i_ino, page->index);
607                 goto try_again;
608         }
609
610         if (!pcol->pages) {
611                 ret = pcol_try_alloc(pcol);
612                 if (unlikely(ret))
613                         goto fail;
614         }
615
616         EXOFS_DBGMSG2("    writepage_strip(0x%lx, 0x%lx) len=0x%zx\n",
617                      inode->i_ino, page->index, len);
618
619         ret = pcol_add_page(pcol, page, len);
620         if (unlikely(ret)) {
621                 EXOFS_DBGMSG2("Failed pcol_add_page "
622                              "nr_pages=%u total_length=0x%lx\n",
623                              pcol->nr_pages, pcol->length);
624
625                 /* split the request, next loop will start again */
626                 ret = write_exec(pcol);
627                 if (unlikely(ret)) {
628                         EXOFS_DBGMSG("write_exec faild => %d", ret);
629                         goto fail;
630                 }
631
632                 goto try_again;
633         }
634
635         BUG_ON(PageWriteback(page));
636         set_page_writeback(page);
637
638         return 0;
639
640 fail:
641         EXOFS_DBGMSG("Error: writepage_strip(0x%lx, 0x%lx)=>%d\n",
642                      inode->i_ino, page->index, ret);
643         set_bit(AS_EIO, &page->mapping->flags);
644         unlock_page(page);
645         return ret;
646 }
647
648 static int exofs_writepages(struct address_space *mapping,
649                        struct writeback_control *wbc)
650 {
651         struct page_collect pcol;
652         long start, end, expected_pages;
653         int ret;
654
655         start = wbc->range_start >> PAGE_CACHE_SHIFT;
656         end = (wbc->range_end == LLONG_MAX) ?
657                         start + mapping->nrpages :
658                         wbc->range_end >> PAGE_CACHE_SHIFT;
659
660         if (start || end)
661                 expected_pages = end - start + 1;
662         else
663                 expected_pages = mapping->nrpages;
664
665         if (expected_pages < 32L)
666                 expected_pages = 32L;
667
668         EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx "
669                      "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n",
670                      mapping->host->i_ino, wbc->range_start, wbc->range_end,
671                      mapping->nrpages, start, end, expected_pages);
672
673         _pcol_init(&pcol, expected_pages, mapping->host);
674
675         ret = write_cache_pages(mapping, wbc, writepage_strip, &pcol);
676         if (ret) {
677                 EXOFS_ERR("write_cache_pages => %d\n", ret);
678                 return ret;
679         }
680
681         return write_exec(&pcol);
682 }
683
684 static int exofs_writepage(struct page *page, struct writeback_control *wbc)
685 {
686         struct page_collect pcol;
687         int ret;
688
689         _pcol_init(&pcol, 1, page->mapping->host);
690
691         ret = writepage_strip(page, NULL, &pcol);
692         if (ret) {
693                 EXOFS_ERR("exofs_writepage => %d\n", ret);
694                 return ret;
695         }
696
697         return write_exec(&pcol);
698 }
699
700 int exofs_write_begin(struct file *file, struct address_space *mapping,
701                 loff_t pos, unsigned len, unsigned flags,
702                 struct page **pagep, void **fsdata)
703 {
704         int ret = 0;
705         struct page *page;
706
707         page = *pagep;
708         if (page == NULL) {
709                 ret = simple_write_begin(file, mapping, pos, len, flags, pagep,
710                                          fsdata);
711                 if (ret) {
712                         EXOFS_DBGMSG("simple_write_begin faild\n");
713                         return ret;
714                 }
715
716                 page = *pagep;
717         }
718
719          /* read modify write */
720         if (!PageUptodate(page) && (len != PAGE_CACHE_SIZE)) {
721                 ret = _readpage(page, true);
722                 if (ret) {
723                         /*SetPageError was done by _readpage. Is it ok?*/
724                         unlock_page(page);
725                         EXOFS_DBGMSG("__readpage_filler faild\n");
726                 }
727         }
728
729         return ret;
730 }
731
732 static int exofs_write_begin_export(struct file *file,
733                 struct address_space *mapping,
734                 loff_t pos, unsigned len, unsigned flags,
735                 struct page **pagep, void **fsdata)
736 {
737         *pagep = NULL;
738
739         return exofs_write_begin(file, mapping, pos, len, flags, pagep,
740                                         fsdata);
741 }
742
743 static int exofs_write_end(struct file *file, struct address_space *mapping,
744                         loff_t pos, unsigned len, unsigned copied,
745                         struct page *page, void *fsdata)
746 {
747         struct inode *inode = mapping->host;
748         /* According to comment in simple_write_end i_mutex is held */
749         loff_t i_size = inode->i_size;
750         int ret;
751
752         ret = simple_write_end(file, mapping,pos, len, copied, page, fsdata);
753         if (i_size != inode->i_size)
754                 mark_inode_dirty(inode);
755         return ret;
756 }
757
758 static int exofs_releasepage(struct page *page, gfp_t gfp)
759 {
760         EXOFS_DBGMSG("page 0x%lx\n", page->index);
761         WARN_ON(1);
762         return try_to_free_buffers(page);
763 }
764
765 static void exofs_invalidatepage(struct page *page, unsigned long offset)
766 {
767         EXOFS_DBGMSG("page_has_buffers=>%d\n", page_has_buffers(page));
768         WARN_ON(1);
769
770         block_invalidatepage(page, offset);
771 }
772
773 const struct address_space_operations exofs_aops = {
774         .readpage       = exofs_readpage,
775         .readpages      = exofs_readpages,
776         .writepage      = exofs_writepage,
777         .writepages     = exofs_writepages,
778         .write_begin    = exofs_write_begin_export,
779         .write_end      = exofs_write_end,
780         .releasepage    = exofs_releasepage,
781         .set_page_dirty = __set_page_dirty_nobuffers,
782         .invalidatepage = exofs_invalidatepage,
783
784         /* Not implemented Yet */
785         .bmap           = NULL, /* TODO: use osd's OSD_ACT_READ_MAP */
786         .direct_IO      = NULL, /* TODO: Should be trivial to do */
787
788         /* With these NULL has special meaning or default is not exported */
789         .sync_page      = NULL,
790         .get_xip_mem    = NULL,
791         .migratepage    = NULL,
792         .launder_page   = NULL,
793         .is_partially_uptodate = NULL,
794         .error_remove_page = NULL,
795 };
796
797 /******************************************************************************
798  * INODE OPERATIONS
799  *****************************************************************************/
800
801 /*
802  * Test whether an inode is a fast symlink.
803  */
804 static inline int exofs_inode_is_fast_symlink(struct inode *inode)
805 {
806         struct exofs_i_info *oi = exofs_i(inode);
807
808         return S_ISLNK(inode->i_mode) && (oi->i_data[0] != 0);
809 }
810
811 /*
812  * get_block_t - Fill in a buffer_head
813  * An OSD takes care of block allocation so we just fake an allocation by
814  * putting in the inode's sector_t in the buffer_head.
815  * TODO: What about the case of create==0 and @iblock does not exist in the
816  * object?
817  */
818 static int exofs_get_block(struct inode *inode, sector_t iblock,
819                     struct buffer_head *bh_result, int create)
820 {
821         map_bh(bh_result, inode->i_sb, iblock);
822         return 0;
823 }
824
825 const struct osd_attr g_attr_logical_length = ATTR_DEF(
826         OSD_APAGE_OBJECT_INFORMATION, OSD_ATTR_OI_LOGICAL_LENGTH, 8);
827
828 static int _do_truncate(struct inode *inode)
829 {
830         struct exofs_i_info *oi = exofs_i(inode);
831         loff_t isize = i_size_read(inode);
832         int ret;
833
834         inode->i_mtime = inode->i_ctime = CURRENT_TIME;
835
836         nobh_truncate_page(inode->i_mapping, isize, exofs_get_block);
837
838         ret = exofs_oi_truncate(oi, (u64)isize);
839         EXOFS_DBGMSG("(0x%lx) size=0x%llx\n", inode->i_ino, isize);
840         return ret;
841 }
842
843 /*
844  * Truncate a file to the specified size - all we have to do is set the size
845  * attribute.  We make sure the object exists first.
846  */
847 void exofs_truncate(struct inode *inode)
848 {
849         struct exofs_i_info *oi = exofs_i(inode);
850         int ret;
851
852         if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
853              || S_ISLNK(inode->i_mode)))
854                 return;
855         if (exofs_inode_is_fast_symlink(inode))
856                 return;
857         if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
858                 return;
859
860         /* if we are about to truncate an object, and it hasn't been
861          * created yet, wait
862          */
863         if (unlikely(wait_obj_created(oi)))
864                 goto fail;
865
866         ret = _do_truncate(inode);
867         if (ret)
868                 goto fail;
869
870 out:
871         mark_inode_dirty(inode);
872         return;
873 fail:
874         make_bad_inode(inode);
875         goto out;
876 }
877
878 /*
879  * Set inode attributes - just call generic functions.
880  */
881 int exofs_setattr(struct dentry *dentry, struct iattr *iattr)
882 {
883         struct inode *inode = dentry->d_inode;
884         int error;
885
886         error = inode_change_ok(inode, iattr);
887         if (error)
888                 return error;
889
890         if ((iattr->ia_valid & ATTR_SIZE) &&
891             iattr->ia_size != i_size_read(inode)) {
892                 int error;
893
894                 error = vmtruncate(inode, iattr->ia_size);
895                 if (error)
896                         return error;
897         }
898
899         setattr_copy(inode, iattr);
900         mark_inode_dirty(inode);
901         return 0;
902 }
903
904 static const struct osd_attr g_attr_inode_file_layout = ATTR_DEF(
905         EXOFS_APAGE_FS_DATA,
906         EXOFS_ATTR_INODE_FILE_LAYOUT,
907         0);
908 static const struct osd_attr g_attr_inode_dir_layout = ATTR_DEF(
909         EXOFS_APAGE_FS_DATA,
910         EXOFS_ATTR_INODE_DIR_LAYOUT,
911         0);
912
913 /*
914  * Read the Linux inode info from the OSD, and return it as is. In exofs the
915  * inode info is in an application specific page/attribute of the osd-object.
916  */
917 static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
918                     struct exofs_fcb *inode)
919 {
920         struct exofs_sb_info *sbi = sb->s_fs_info;
921         struct osd_attr attrs[] = {
922                 [0] = g_attr_inode_data,
923                 [1] = g_attr_inode_file_layout,
924                 [2] = g_attr_inode_dir_layout,
925         };
926         struct exofs_io_state *ios;
927         struct exofs_on_disk_inode_layout *layout;
928         int ret;
929
930         ret = exofs_get_io_state(&sbi->layout, &ios);
931         if (unlikely(ret)) {
932                 EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__);
933                 return ret;
934         }
935
936         ios->obj.id = exofs_oi_objno(oi);
937         exofs_make_credential(oi->i_cred, &ios->obj);
938         ios->cred = oi->i_cred;
939
940         attrs[1].len = exofs_on_disk_inode_layout_size(sbi->layout.s_numdevs);
941         attrs[2].len = exofs_on_disk_inode_layout_size(sbi->layout.s_numdevs);
942
943         ios->in_attr = attrs;
944         ios->in_attr_len = ARRAY_SIZE(attrs);
945
946         ret = exofs_sbi_read(ios);
947         if (unlikely(ret)) {
948                 EXOFS_ERR("object(0x%llx) corrupted, return empty file=>%d\n",
949                           _LLU(ios->obj.id), ret);
950                 memset(inode, 0, sizeof(*inode));
951                 inode->i_mode = 0040000 | (0777 & ~022);
952                 /* If object is lost on target we might as well enable it's
953                  * delete.
954                  */
955                 if ((ret == -ENOENT) || (ret == -EINVAL))
956                         ret = 0;
957                 goto out;
958         }
959
960         ret = extract_attr_from_ios(ios, &attrs[0]);
961         if (ret) {
962                 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
963                 goto out;
964         }
965         WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE);
966         memcpy(inode, attrs[0].val_ptr, EXOFS_INO_ATTR_SIZE);
967
968         ret = extract_attr_from_ios(ios, &attrs[1]);
969         if (ret) {
970                 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
971                 goto out;
972         }
973         if (attrs[1].len) {
974                 layout = attrs[1].val_ptr;
975                 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
976                         EXOFS_ERR("%s: unsupported files layout %d\n",
977                                 __func__, layout->gen_func);
978                         ret = -ENOTSUPP;
979                         goto out;
980                 }
981         }
982
983         ret = extract_attr_from_ios(ios, &attrs[2]);
984         if (ret) {
985                 EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__);
986                 goto out;
987         }
988         if (attrs[2].len) {
989                 layout = attrs[2].val_ptr;
990                 if (layout->gen_func != cpu_to_le16(LAYOUT_MOVING_WINDOW)) {
991                         EXOFS_ERR("%s: unsupported meta-data layout %d\n",
992                                 __func__, layout->gen_func);
993                         ret = -ENOTSUPP;
994                         goto out;
995                 }
996         }
997
998 out:
999         exofs_put_io_state(ios);
1000         return ret;
1001 }
1002
1003 static void __oi_init(struct exofs_i_info *oi)
1004 {
1005         init_waitqueue_head(&oi->i_wq);
1006         oi->i_flags = 0;
1007 }
1008 /*
1009  * Fill in an inode read from the OSD and set it up for use
1010  */
1011 struct inode *exofs_iget(struct super_block *sb, unsigned long ino)
1012 {
1013         struct exofs_i_info *oi;
1014         struct exofs_fcb fcb;
1015         struct inode *inode;
1016         int ret;
1017
1018         inode = iget_locked(sb, ino);
1019         if (!inode)
1020                 return ERR_PTR(-ENOMEM);
1021         if (!(inode->i_state & I_NEW))
1022                 return inode;
1023         oi = exofs_i(inode);
1024         __oi_init(oi);
1025
1026         /* read the inode from the osd */
1027         ret = exofs_get_inode(sb, oi, &fcb);
1028         if (ret)
1029                 goto bad_inode;
1030
1031         set_obj_created(oi);
1032
1033         /* copy stuff from on-disk struct to in-memory struct */
1034         inode->i_mode = le16_to_cpu(fcb.i_mode);
1035         inode->i_uid = le32_to_cpu(fcb.i_uid);
1036         inode->i_gid = le32_to_cpu(fcb.i_gid);
1037         inode->i_nlink = le16_to_cpu(fcb.i_links_count);
1038         inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime);
1039         inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime);
1040         inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime);
1041         inode->i_ctime.tv_nsec =
1042                 inode->i_atime.tv_nsec = inode->i_mtime.tv_nsec = 0;
1043         oi->i_commit_size = le64_to_cpu(fcb.i_size);
1044         i_size_write(inode, oi->i_commit_size);
1045         inode->i_blkbits = EXOFS_BLKSHIFT;
1046         inode->i_generation = le32_to_cpu(fcb.i_generation);
1047
1048         oi->i_dir_start_lookup = 0;
1049
1050         if ((inode->i_nlink == 0) && (inode->i_mode == 0)) {
1051                 ret = -ESTALE;
1052                 goto bad_inode;
1053         }
1054
1055         if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1056                 if (fcb.i_data[0])
1057                         inode->i_rdev =
1058                                 old_decode_dev(le32_to_cpu(fcb.i_data[0]));
1059                 else
1060                         inode->i_rdev =
1061                                 new_decode_dev(le32_to_cpu(fcb.i_data[1]));
1062         } else {
1063                 memcpy(oi->i_data, fcb.i_data, sizeof(fcb.i_data));
1064         }
1065
1066         if (S_ISREG(inode->i_mode)) {
1067                 inode->i_op = &exofs_file_inode_operations;
1068                 inode->i_fop = &exofs_file_operations;
1069                 inode->i_mapping->a_ops = &exofs_aops;
1070         } else if (S_ISDIR(inode->i_mode)) {
1071                 inode->i_op = &exofs_dir_inode_operations;
1072                 inode->i_fop = &exofs_dir_operations;
1073                 inode->i_mapping->a_ops = &exofs_aops;
1074         } else if (S_ISLNK(inode->i_mode)) {
1075                 if (exofs_inode_is_fast_symlink(inode))
1076                         inode->i_op = &exofs_fast_symlink_inode_operations;
1077                 else {
1078                         inode->i_op = &exofs_symlink_inode_operations;
1079                         inode->i_mapping->a_ops = &exofs_aops;
1080                 }
1081         } else {
1082                 inode->i_op = &exofs_special_inode_operations;
1083                 if (fcb.i_data[0])
1084                         init_special_inode(inode, inode->i_mode,
1085                            old_decode_dev(le32_to_cpu(fcb.i_data[0])));
1086                 else
1087                         init_special_inode(inode, inode->i_mode,
1088                            new_decode_dev(le32_to_cpu(fcb.i_data[1])));
1089         }
1090
1091         unlock_new_inode(inode);
1092         return inode;
1093
1094 bad_inode:
1095         iget_failed(inode);
1096         return ERR_PTR(ret);
1097 }
1098
1099 int __exofs_wait_obj_created(struct exofs_i_info *oi)
1100 {
1101         if (!obj_created(oi)) {
1102                 BUG_ON(!obj_2bcreated(oi));
1103                 wait_event(oi->i_wq, obj_created(oi));
1104         }
1105         return unlikely(is_bad_inode(&oi->vfs_inode)) ? -EIO : 0;
1106 }
1107 /*
1108  * Callback function from exofs_new_inode().  The important thing is that we
1109  * set the obj_created flag so that other methods know that the object exists on
1110  * the OSD.
1111  */
1112 static void create_done(struct exofs_io_state *ios, void *p)
1113 {
1114         struct inode *inode = p;
1115         struct exofs_i_info *oi = exofs_i(inode);
1116         struct exofs_sb_info *sbi = inode->i_sb->s_fs_info;
1117         int ret;
1118
1119         ret = exofs_check_io(ios, NULL);
1120         exofs_put_io_state(ios);
1121
1122         atomic_dec(&sbi->s_curr_pending);
1123
1124         if (unlikely(ret)) {
1125                 EXOFS_ERR("object=0x%llx creation faild in pid=0x%llx",
1126                           _LLU(exofs_oi_objno(oi)), _LLU(sbi->layout.s_pid));
1127                 /*TODO: When FS is corrupted creation can fail, object already
1128                  * exist. Get rid of this asynchronous creation, if exist
1129                  * increment the obj counter and try the next object. Until we
1130                  * succeed. All these dangling objects will be made into lost
1131                  * files by chkfs.exofs
1132                  */
1133         }
1134
1135         set_obj_created(oi);
1136
1137         atomic_dec(&inode->i_count);
1138         wake_up(&oi->i_wq);
1139 }
1140
1141 /*
1142  * Set up a new inode and create an object for it on the OSD
1143  */
1144 struct inode *exofs_new_inode(struct inode *dir, int mode)
1145 {
1146         struct super_block *sb;
1147         struct inode *inode;
1148         struct exofs_i_info *oi;
1149         struct exofs_sb_info *sbi;
1150         struct exofs_io_state *ios;
1151         int ret;
1152
1153         sb = dir->i_sb;
1154         inode = new_inode(sb);
1155         if (!inode)
1156                 return ERR_PTR(-ENOMEM);
1157
1158         oi = exofs_i(inode);
1159         __oi_init(oi);
1160
1161         set_obj_2bcreated(oi);
1162
1163         sbi = sb->s_fs_info;
1164
1165         sb->s_dirt = 1;
1166         inode_init_owner(inode, dir, mode);
1167         inode->i_ino = sbi->s_nextid++;
1168         inode->i_blkbits = EXOFS_BLKSHIFT;
1169         inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
1170         oi->i_commit_size = inode->i_size = 0;
1171         spin_lock(&sbi->s_next_gen_lock);
1172         inode->i_generation = sbi->s_next_generation++;
1173         spin_unlock(&sbi->s_next_gen_lock);
1174         insert_inode_hash(inode);
1175
1176         mark_inode_dirty(inode);
1177
1178         ret = exofs_get_io_state(&sbi->layout, &ios);
1179         if (unlikely(ret)) {
1180                 EXOFS_ERR("exofs_new_inode: exofs_get_io_state failed\n");
1181                 return ERR_PTR(ret);
1182         }
1183
1184         ios->obj.id = exofs_oi_objno(oi);
1185         exofs_make_credential(oi->i_cred, &ios->obj);
1186
1187         /* increment the refcount so that the inode will still be around when we
1188          * reach the callback
1189          */
1190         atomic_inc(&inode->i_count);
1191
1192         ios->done = create_done;
1193         ios->private = inode;
1194         ios->cred = oi->i_cred;
1195         ret = exofs_sbi_create(ios);
1196         if (ret) {
1197                 atomic_dec(&inode->i_count);
1198                 exofs_put_io_state(ios);
1199                 return ERR_PTR(ret);
1200         }
1201         atomic_inc(&sbi->s_curr_pending);
1202
1203         return inode;
1204 }
1205
1206 /*
1207  * struct to pass two arguments to update_inode's callback
1208  */
1209 struct updatei_args {
1210         struct exofs_sb_info    *sbi;
1211         struct exofs_fcb        fcb;
1212 };
1213
1214 /*
1215  * Callback function from exofs_update_inode().
1216  */
1217 static void updatei_done(struct exofs_io_state *ios, void *p)
1218 {
1219         struct updatei_args *args = p;
1220
1221         exofs_put_io_state(ios);
1222
1223         atomic_dec(&args->sbi->s_curr_pending);
1224
1225         kfree(args);
1226 }
1227
1228 /*
1229  * Write the inode to the OSD.  Just fill up the struct, and set the attribute
1230  * synchronously or asynchronously depending on the do_sync flag.
1231  */
1232 static int exofs_update_inode(struct inode *inode, int do_sync)
1233 {
1234         struct exofs_i_info *oi = exofs_i(inode);
1235         struct super_block *sb = inode->i_sb;
1236         struct exofs_sb_info *sbi = sb->s_fs_info;
1237         struct exofs_io_state *ios;
1238         struct osd_attr attr;
1239         struct exofs_fcb *fcb;
1240         struct updatei_args *args;
1241         int ret;
1242
1243         args = kzalloc(sizeof(*args), GFP_KERNEL);
1244         if (!args) {
1245                 EXOFS_DBGMSG("Faild kzalloc of args\n");
1246                 return -ENOMEM;
1247         }
1248
1249         fcb = &args->fcb;
1250
1251         fcb->i_mode = cpu_to_le16(inode->i_mode);
1252         fcb->i_uid = cpu_to_le32(inode->i_uid);
1253         fcb->i_gid = cpu_to_le32(inode->i_gid);
1254         fcb->i_links_count = cpu_to_le16(inode->i_nlink);
1255         fcb->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
1256         fcb->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
1257         fcb->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
1258         oi->i_commit_size = i_size_read(inode);
1259         fcb->i_size = cpu_to_le64(oi->i_commit_size);
1260         fcb->i_generation = cpu_to_le32(inode->i_generation);
1261
1262         if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1263                 if (old_valid_dev(inode->i_rdev)) {
1264                         fcb->i_data[0] =
1265                                 cpu_to_le32(old_encode_dev(inode->i_rdev));
1266                         fcb->i_data[1] = 0;
1267                 } else {
1268                         fcb->i_data[0] = 0;
1269                         fcb->i_data[1] =
1270                                 cpu_to_le32(new_encode_dev(inode->i_rdev));
1271                         fcb->i_data[2] = 0;
1272                 }
1273         } else
1274                 memcpy(fcb->i_data, oi->i_data, sizeof(fcb->i_data));
1275
1276         ret = exofs_get_io_state(&sbi->layout, &ios);
1277         if (unlikely(ret)) {
1278                 EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__);
1279                 goto free_args;
1280         }
1281
1282         attr = g_attr_inode_data;
1283         attr.val_ptr = fcb;
1284         ios->out_attr_len = 1;
1285         ios->out_attr = &attr;
1286
1287         if (!obj_created(oi)) {
1288                 EXOFS_DBGMSG("!obj_created\n");
1289                 BUG_ON(!obj_2bcreated(oi));
1290                 wait_event(oi->i_wq, obj_created(oi));
1291                 EXOFS_DBGMSG("wait_event done\n");
1292         }
1293
1294         if (!do_sync) {
1295                 args->sbi = sbi;
1296                 ios->done = updatei_done;
1297                 ios->private = args;
1298         }
1299
1300         ret = exofs_oi_write(oi, ios);
1301         if (!do_sync && !ret) {
1302                 atomic_inc(&sbi->s_curr_pending);
1303                 goto out; /* deallocation in updatei_done */
1304         }
1305
1306         exofs_put_io_state(ios);
1307 free_args:
1308         kfree(args);
1309 out:
1310         EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n",
1311                      inode->i_ino, do_sync, ret);
1312         return ret;
1313 }
1314
1315 int exofs_write_inode(struct inode *inode, struct writeback_control *wbc)
1316 {
1317         return exofs_update_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
1318 }
1319
1320 /*
1321  * Callback function from exofs_delete_inode() - don't have much cleaning up to
1322  * do.
1323  */
1324 static void delete_done(struct exofs_io_state *ios, void *p)
1325 {
1326         struct exofs_sb_info *sbi = p;
1327
1328         exofs_put_io_state(ios);
1329
1330         atomic_dec(&sbi->s_curr_pending);
1331 }
1332
1333 /*
1334  * Called when the refcount of an inode reaches zero.  We remove the object
1335  * from the OSD here.  We make sure the object was created before we try and
1336  * delete it.
1337  */
1338 void exofs_delete_inode(struct inode *inode)
1339 {
1340         struct exofs_i_info *oi = exofs_i(inode);
1341         struct super_block *sb = inode->i_sb;
1342         struct exofs_sb_info *sbi = sb->s_fs_info;
1343         struct exofs_io_state *ios;
1344         int ret;
1345
1346         truncate_inode_pages(&inode->i_data, 0);
1347
1348         if (is_bad_inode(inode))
1349                 goto no_delete;
1350
1351         mark_inode_dirty(inode);
1352         exofs_update_inode(inode, inode_needs_sync(inode));
1353
1354         inode->i_size = 0;
1355         if (inode->i_blocks)
1356                 exofs_truncate(inode);
1357
1358         clear_inode(inode);
1359
1360         ret = exofs_get_io_state(&sbi->layout, &ios);
1361         if (unlikely(ret)) {
1362                 EXOFS_ERR("%s: exofs_get_io_state failed\n", __func__);
1363                 return;
1364         }
1365
1366         /* if we are deleting an obj that hasn't been created yet, wait */
1367         if (!obj_created(oi)) {
1368                 BUG_ON(!obj_2bcreated(oi));
1369                 wait_event(oi->i_wq, obj_created(oi));
1370         }
1371
1372         ios->obj.id = exofs_oi_objno(oi);
1373         ios->done = delete_done;
1374         ios->private = sbi;
1375         ios->cred = oi->i_cred;
1376         ret = exofs_sbi_remove(ios);
1377         if (ret) {
1378                 EXOFS_ERR("%s: exofs_sbi_remove failed\n", __func__);
1379                 exofs_put_io_state(ios);
1380                 return;
1381         }
1382         atomic_inc(&sbi->s_curr_pending);
1383
1384         return;
1385
1386 no_delete:
1387         clear_inode(inode);
1388 }