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