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