Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1 | #include "ceph_debug.h" |
| 2 | |
| 3 | #include <linux/backing-dev.h> |
| 4 | #include <linux/fs.h> |
| 5 | #include <linux/mm.h> |
| 6 | #include <linux/pagemap.h> |
| 7 | #include <linux/writeback.h> /* generic_writepages */ |
| 8 | #include <linux/pagevec.h> |
| 9 | #include <linux/task_io_accounting_ops.h> |
| 10 | |
| 11 | #include "super.h" |
| 12 | #include "osd_client.h" |
| 13 | |
| 14 | /* |
| 15 | * Ceph address space ops. |
| 16 | * |
| 17 | * There are a few funny things going on here. |
| 18 | * |
| 19 | * The page->private field is used to reference a struct |
| 20 | * ceph_snap_context for _every_ dirty page. This indicates which |
| 21 | * snapshot the page was logically dirtied in, and thus which snap |
| 22 | * context needs to be associated with the osd write during writeback. |
| 23 | * |
| 24 | * Similarly, struct ceph_inode_info maintains a set of counters to |
| 25 | * count dirty pages on the inode. In the absense of snapshots, |
| 26 | * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count. |
| 27 | * |
| 28 | * When a snapshot is taken (that is, when the client receives |
| 29 | * notification that a snapshot was taken), each inode with caps and |
| 30 | * with dirty pages (dirty pages implies there is a cap) gets a new |
| 31 | * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending |
| 32 | * order, new snaps go to the tail). The i_wrbuffer_ref_head count is |
| 33 | * moved to capsnap->dirty. (Unless a sync write is currently in |
| 34 | * progress. In that case, the capsnap is said to be "pending", new |
| 35 | * writes cannot start, and the capsnap isn't "finalized" until the |
| 36 | * write completes (or fails) and a final size/mtime for the inode for |
| 37 | * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0. |
| 38 | * |
| 39 | * On writeback, we must submit writes to the osd IN SNAP ORDER. So, |
| 40 | * we look for the first capsnap in i_cap_snaps and write out pages in |
| 41 | * that snap context _only_. Then we move on to the next capsnap, |
| 42 | * eventually reaching the "live" or "head" context (i.e., pages that |
| 43 | * are not yet snapped) and are writing the most recently dirtied |
| 44 | * pages. |
| 45 | * |
| 46 | * Invalidate and so forth must take care to ensure the dirty page |
| 47 | * accounting is preserved. |
| 48 | */ |
| 49 | |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 50 | #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10)) |
| 51 | #define CONGESTION_OFF_THRESH(congestion_kb) \ |
| 52 | (CONGESTION_ON_THRESH(congestion_kb) - \ |
| 53 | (CONGESTION_ON_THRESH(congestion_kb) >> 2)) |
| 54 | |
| 55 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * Dirty a page. Optimistically adjust accounting, on the assumption |
| 59 | * that we won't race with invalidate. If we do, readjust. |
| 60 | */ |
| 61 | static int ceph_set_page_dirty(struct page *page) |
| 62 | { |
| 63 | struct address_space *mapping = page->mapping; |
| 64 | struct inode *inode; |
| 65 | struct ceph_inode_info *ci; |
| 66 | int undo = 0; |
| 67 | struct ceph_snap_context *snapc; |
| 68 | |
| 69 | if (unlikely(!mapping)) |
| 70 | return !TestSetPageDirty(page); |
| 71 | |
| 72 | if (TestSetPageDirty(page)) { |
| 73 | dout("%p set_page_dirty %p idx %lu -- already dirty\n", |
| 74 | mapping->host, page, page->index); |
| 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | inode = mapping->host; |
| 79 | ci = ceph_inode(inode); |
| 80 | |
| 81 | /* |
| 82 | * Note that we're grabbing a snapc ref here without holding |
| 83 | * any locks! |
| 84 | */ |
| 85 | snapc = ceph_get_snap_context(ci->i_snap_realm->cached_context); |
| 86 | |
| 87 | /* dirty the head */ |
| 88 | spin_lock(&inode->i_lock); |
| 89 | if (ci->i_wrbuffer_ref_head == 0) |
| 90 | ci->i_head_snapc = ceph_get_snap_context(snapc); |
| 91 | ++ci->i_wrbuffer_ref_head; |
| 92 | if (ci->i_wrbuffer_ref == 0) |
| 93 | igrab(inode); |
| 94 | ++ci->i_wrbuffer_ref; |
| 95 | dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d " |
| 96 | "snapc %p seq %lld (%d snaps)\n", |
| 97 | mapping->host, page, page->index, |
| 98 | ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1, |
| 99 | ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head, |
| 100 | snapc, snapc->seq, snapc->num_snaps); |
| 101 | spin_unlock(&inode->i_lock); |
| 102 | |
| 103 | /* now adjust page */ |
| 104 | spin_lock_irq(&mapping->tree_lock); |
| 105 | if (page->mapping) { /* Race with truncate? */ |
| 106 | WARN_ON_ONCE(!PageUptodate(page)); |
| 107 | |
| 108 | if (mapping_cap_account_dirty(mapping)) { |
| 109 | __inc_zone_page_state(page, NR_FILE_DIRTY); |
| 110 | __inc_bdi_stat(mapping->backing_dev_info, |
| 111 | BDI_RECLAIMABLE); |
| 112 | task_io_account_write(PAGE_CACHE_SIZE); |
| 113 | } |
| 114 | radix_tree_tag_set(&mapping->page_tree, |
| 115 | page_index(page), PAGECACHE_TAG_DIRTY); |
| 116 | |
| 117 | /* |
| 118 | * Reference snap context in page->private. Also set |
| 119 | * PagePrivate so that we get invalidatepage callback. |
| 120 | */ |
| 121 | page->private = (unsigned long)snapc; |
| 122 | SetPagePrivate(page); |
| 123 | } else { |
| 124 | dout("ANON set_page_dirty %p (raced truncate?)\n", page); |
| 125 | undo = 1; |
| 126 | } |
| 127 | |
| 128 | spin_unlock_irq(&mapping->tree_lock); |
| 129 | |
| 130 | if (undo) |
| 131 | /* whoops, we failed to dirty the page */ |
| 132 | ceph_put_wrbuffer_cap_refs(ci, 1, snapc); |
| 133 | |
| 134 | __mark_inode_dirty(mapping->host, I_DIRTY_PAGES); |
| 135 | |
| 136 | BUG_ON(!PageDirty(page)); |
| 137 | return 1; |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * If we are truncating the full page (i.e. offset == 0), adjust the |
| 142 | * dirty page counters appropriately. Only called if there is private |
| 143 | * data on the page. |
| 144 | */ |
| 145 | static void ceph_invalidatepage(struct page *page, unsigned long offset) |
| 146 | { |
| 147 | struct inode *inode = page->mapping->host; |
| 148 | struct ceph_inode_info *ci; |
| 149 | struct ceph_snap_context *snapc = (void *)page->private; |
| 150 | |
| 151 | BUG_ON(!PageLocked(page)); |
| 152 | BUG_ON(!page->private); |
| 153 | BUG_ON(!PagePrivate(page)); |
| 154 | BUG_ON(!page->mapping); |
| 155 | |
| 156 | /* |
| 157 | * We can get non-dirty pages here due to races between |
| 158 | * set_page_dirty and truncate_complete_page; just spit out a |
| 159 | * warning, in case we end up with accounting problems later. |
| 160 | */ |
| 161 | if (!PageDirty(page)) |
| 162 | pr_err("%p invalidatepage %p page not dirty\n", inode, page); |
| 163 | |
| 164 | if (offset == 0) |
| 165 | ClearPageChecked(page); |
| 166 | |
| 167 | ci = ceph_inode(inode); |
| 168 | if (offset == 0) { |
| 169 | dout("%p invalidatepage %p idx %lu full dirty page %lu\n", |
| 170 | inode, page, page->index, offset); |
| 171 | ceph_put_wrbuffer_cap_refs(ci, 1, snapc); |
| 172 | ceph_put_snap_context(snapc); |
| 173 | page->private = 0; |
| 174 | ClearPagePrivate(page); |
| 175 | } else { |
| 176 | dout("%p invalidatepage %p idx %lu partial dirty page\n", |
| 177 | inode, page, page->index); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | /* just a sanity check */ |
| 182 | static int ceph_releasepage(struct page *page, gfp_t g) |
| 183 | { |
| 184 | struct inode *inode = page->mapping ? page->mapping->host : NULL; |
| 185 | dout("%p releasepage %p idx %lu\n", inode, page, page->index); |
| 186 | WARN_ON(PageDirty(page)); |
| 187 | WARN_ON(page->private); |
| 188 | WARN_ON(PagePrivate(page)); |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | /* |
| 193 | * read a single page, without unlocking it. |
| 194 | */ |
| 195 | static int readpage_nounlock(struct file *filp, struct page *page) |
| 196 | { |
| 197 | struct inode *inode = filp->f_dentry->d_inode; |
| 198 | struct ceph_inode_info *ci = ceph_inode(inode); |
| 199 | struct ceph_osd_client *osdc = &ceph_inode_to_client(inode)->osdc; |
| 200 | int err = 0; |
| 201 | u64 len = PAGE_CACHE_SIZE; |
| 202 | |
| 203 | dout("readpage inode %p file %p page %p index %lu\n", |
| 204 | inode, filp, page, page->index); |
| 205 | err = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout, |
| 206 | page->index << PAGE_CACHE_SHIFT, &len, |
| 207 | ci->i_truncate_seq, ci->i_truncate_size, |
| 208 | &page, 1); |
| 209 | if (err == -ENOENT) |
| 210 | err = 0; |
| 211 | if (err < 0) { |
| 212 | SetPageError(page); |
| 213 | goto out; |
| 214 | } else if (err < PAGE_CACHE_SIZE) { |
| 215 | /* zero fill remainder of page */ |
| 216 | zero_user_segment(page, err, PAGE_CACHE_SIZE); |
| 217 | } |
| 218 | SetPageUptodate(page); |
| 219 | |
| 220 | out: |
| 221 | return err < 0 ? err : 0; |
| 222 | } |
| 223 | |
| 224 | static int ceph_readpage(struct file *filp, struct page *page) |
| 225 | { |
| 226 | int r = readpage_nounlock(filp, page); |
| 227 | unlock_page(page); |
| 228 | return r; |
| 229 | } |
| 230 | |
| 231 | /* |
| 232 | * Build a vector of contiguous pages from the provided page list. |
| 233 | */ |
| 234 | static struct page **page_vector_from_list(struct list_head *page_list, |
| 235 | unsigned *nr_pages) |
| 236 | { |
| 237 | struct page **pages; |
| 238 | struct page *page; |
| 239 | int next_index, contig_pages = 0; |
| 240 | |
| 241 | /* build page vector */ |
| 242 | pages = kmalloc(sizeof(*pages) * *nr_pages, GFP_NOFS); |
| 243 | if (!pages) |
| 244 | return ERR_PTR(-ENOMEM); |
| 245 | |
| 246 | BUG_ON(list_empty(page_list)); |
| 247 | next_index = list_entry(page_list->prev, struct page, lru)->index; |
| 248 | list_for_each_entry_reverse(page, page_list, lru) { |
| 249 | if (page->index == next_index) { |
| 250 | dout("readpages page %d %p\n", contig_pages, page); |
| 251 | pages[contig_pages] = page; |
| 252 | contig_pages++; |
| 253 | next_index++; |
| 254 | } else { |
| 255 | break; |
| 256 | } |
| 257 | } |
| 258 | *nr_pages = contig_pages; |
| 259 | return pages; |
| 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Read multiple pages. Leave pages we don't read + unlock in page_list; |
| 264 | * the caller (VM) cleans them up. |
| 265 | */ |
| 266 | static int ceph_readpages(struct file *file, struct address_space *mapping, |
| 267 | struct list_head *page_list, unsigned nr_pages) |
| 268 | { |
| 269 | struct inode *inode = file->f_dentry->d_inode; |
| 270 | struct ceph_inode_info *ci = ceph_inode(inode); |
| 271 | struct ceph_osd_client *osdc = &ceph_inode_to_client(inode)->osdc; |
| 272 | int rc = 0; |
| 273 | struct page **pages; |
| 274 | struct pagevec pvec; |
| 275 | loff_t offset; |
| 276 | u64 len; |
| 277 | |
| 278 | dout("readpages %p file %p nr_pages %d\n", |
| 279 | inode, file, nr_pages); |
| 280 | |
| 281 | pages = page_vector_from_list(page_list, &nr_pages); |
| 282 | if (IS_ERR(pages)) |
| 283 | return PTR_ERR(pages); |
| 284 | |
| 285 | /* guess read extent */ |
| 286 | offset = pages[0]->index << PAGE_CACHE_SHIFT; |
| 287 | len = nr_pages << PAGE_CACHE_SHIFT; |
| 288 | rc = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout, |
| 289 | offset, &len, |
| 290 | ci->i_truncate_seq, ci->i_truncate_size, |
| 291 | pages, nr_pages); |
| 292 | if (rc == -ENOENT) |
| 293 | rc = 0; |
| 294 | if (rc < 0) |
| 295 | goto out; |
| 296 | |
| 297 | /* set uptodate and add to lru in pagevec-sized chunks */ |
| 298 | pagevec_init(&pvec, 0); |
| 299 | for (; !list_empty(page_list) && len > 0; |
| 300 | rc -= PAGE_CACHE_SIZE, len -= PAGE_CACHE_SIZE) { |
| 301 | struct page *page = |
| 302 | list_entry(page_list->prev, struct page, lru); |
| 303 | |
| 304 | list_del(&page->lru); |
| 305 | |
| 306 | if (rc < (int)PAGE_CACHE_SIZE) { |
| 307 | /* zero (remainder of) page */ |
| 308 | int s = rc < 0 ? 0 : rc; |
| 309 | zero_user_segment(page, s, PAGE_CACHE_SIZE); |
| 310 | } |
| 311 | |
| 312 | if (add_to_page_cache(page, mapping, page->index, GFP_NOFS)) { |
| 313 | page_cache_release(page); |
| 314 | dout("readpages %p add_to_page_cache failed %p\n", |
| 315 | inode, page); |
| 316 | continue; |
| 317 | } |
| 318 | dout("readpages %p adding %p idx %lu\n", inode, page, |
| 319 | page->index); |
| 320 | flush_dcache_page(page); |
| 321 | SetPageUptodate(page); |
| 322 | unlock_page(page); |
| 323 | if (pagevec_add(&pvec, page) == 0) |
| 324 | pagevec_lru_add_file(&pvec); /* add to lru */ |
| 325 | } |
| 326 | pagevec_lru_add_file(&pvec); |
| 327 | rc = 0; |
| 328 | |
| 329 | out: |
| 330 | kfree(pages); |
| 331 | return rc; |
| 332 | } |
| 333 | |
| 334 | /* |
| 335 | * Get ref for the oldest snapc for an inode with dirty data... that is, the |
| 336 | * only snap context we are allowed to write back. |
| 337 | * |
| 338 | * Caller holds i_lock. |
| 339 | */ |
| 340 | static struct ceph_snap_context *__get_oldest_context(struct inode *inode, |
| 341 | u64 *snap_size) |
| 342 | { |
| 343 | struct ceph_inode_info *ci = ceph_inode(inode); |
| 344 | struct ceph_snap_context *snapc = NULL; |
| 345 | struct ceph_cap_snap *capsnap = NULL; |
| 346 | |
| 347 | list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) { |
| 348 | dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap, |
| 349 | capsnap->context, capsnap->dirty_pages); |
| 350 | if (capsnap->dirty_pages) { |
| 351 | snapc = ceph_get_snap_context(capsnap->context); |
| 352 | if (snap_size) |
| 353 | *snap_size = capsnap->size; |
| 354 | break; |
| 355 | } |
| 356 | } |
| 357 | if (!snapc && ci->i_snap_realm) { |
| 358 | snapc = ceph_get_snap_context(ci->i_snap_realm->cached_context); |
| 359 | dout(" head snapc %p has %d dirty pages\n", |
| 360 | snapc, ci->i_wrbuffer_ref_head); |
| 361 | } |
| 362 | return snapc; |
| 363 | } |
| 364 | |
| 365 | static struct ceph_snap_context *get_oldest_context(struct inode *inode, |
| 366 | u64 *snap_size) |
| 367 | { |
| 368 | struct ceph_snap_context *snapc = NULL; |
| 369 | |
| 370 | spin_lock(&inode->i_lock); |
| 371 | snapc = __get_oldest_context(inode, snap_size); |
| 372 | spin_unlock(&inode->i_lock); |
| 373 | return snapc; |
| 374 | } |
| 375 | |
| 376 | /* |
| 377 | * Write a single page, but leave the page locked. |
| 378 | * |
| 379 | * If we get a write error, set the page error bit, but still adjust the |
| 380 | * dirty page accounting (i.e., page is no longer dirty). |
| 381 | */ |
| 382 | static int writepage_nounlock(struct page *page, struct writeback_control *wbc) |
| 383 | { |
| 384 | struct inode *inode; |
| 385 | struct ceph_inode_info *ci; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 386 | struct ceph_client *client; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 387 | struct ceph_osd_client *osdc; |
| 388 | loff_t page_off = page->index << PAGE_CACHE_SHIFT; |
| 389 | int len = PAGE_CACHE_SIZE; |
| 390 | loff_t i_size; |
| 391 | int err = 0; |
| 392 | struct ceph_snap_context *snapc; |
| 393 | u64 snap_size = 0; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 394 | long writeback_stat; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 395 | |
| 396 | dout("writepage %p idx %lu\n", page, page->index); |
| 397 | |
| 398 | if (!page->mapping || !page->mapping->host) { |
| 399 | dout("writepage %p - no mapping\n", page); |
| 400 | return -EFAULT; |
| 401 | } |
| 402 | inode = page->mapping->host; |
| 403 | ci = ceph_inode(inode); |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 404 | client = ceph_inode_to_client(inode); |
| 405 | osdc = &client->osdc; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 406 | |
| 407 | /* verify this is a writeable snap context */ |
| 408 | snapc = (void *)page->private; |
| 409 | if (snapc == NULL) { |
| 410 | dout("writepage %p page %p not dirty?\n", inode, page); |
| 411 | goto out; |
| 412 | } |
| 413 | if (snapc != get_oldest_context(inode, &snap_size)) { |
| 414 | dout("writepage %p page %p snapc %p not writeable - noop\n", |
| 415 | inode, page, (void *)page->private); |
| 416 | /* we should only noop if called by kswapd */ |
| 417 | WARN_ON((current->flags & PF_MEMALLOC) == 0); |
| 418 | goto out; |
| 419 | } |
| 420 | |
| 421 | /* is this a partial page at end of file? */ |
| 422 | if (snap_size) |
| 423 | i_size = snap_size; |
| 424 | else |
| 425 | i_size = i_size_read(inode); |
| 426 | if (i_size < page_off + len) |
| 427 | len = i_size - page_off; |
| 428 | |
| 429 | dout("writepage %p page %p index %lu on %llu~%u\n", |
| 430 | inode, page, page->index, page_off, len); |
| 431 | |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 432 | writeback_stat = atomic_long_inc_return(&client->writeback_count); |
| 433 | if (writeback_stat > |
| 434 | CONGESTION_ON_THRESH(client->mount_args->congestion_kb)) |
| 435 | set_bdi_congested(&client->backing_dev_info, BLK_RW_ASYNC); |
| 436 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 437 | set_page_writeback(page); |
| 438 | err = ceph_osdc_writepages(osdc, ceph_vino(inode), |
| 439 | &ci->i_layout, snapc, |
| 440 | page_off, len, |
| 441 | ci->i_truncate_seq, ci->i_truncate_size, |
| 442 | &inode->i_mtime, |
| 443 | &page, 1, 0, 0, true); |
| 444 | if (err < 0) { |
| 445 | dout("writepage setting page/mapping error %d %p\n", err, page); |
| 446 | SetPageError(page); |
| 447 | mapping_set_error(&inode->i_data, err); |
| 448 | if (wbc) |
| 449 | wbc->pages_skipped++; |
| 450 | } else { |
| 451 | dout("writepage cleaned page %p\n", page); |
| 452 | err = 0; /* vfs expects us to return 0 */ |
| 453 | } |
| 454 | page->private = 0; |
| 455 | ClearPagePrivate(page); |
| 456 | end_page_writeback(page); |
| 457 | ceph_put_wrbuffer_cap_refs(ci, 1, snapc); |
| 458 | ceph_put_snap_context(snapc); |
| 459 | out: |
| 460 | return err; |
| 461 | } |
| 462 | |
| 463 | static int ceph_writepage(struct page *page, struct writeback_control *wbc) |
| 464 | { |
Yehuda Sadeh | dbd646a | 2009-12-16 14:51:06 -0800 | [diff] [blame] | 465 | int err; |
| 466 | struct inode *inode = page->mapping->host; |
| 467 | BUG_ON(!inode); |
| 468 | igrab(inode); |
| 469 | err = writepage_nounlock(page, wbc); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 470 | unlock_page(page); |
Yehuda Sadeh | dbd646a | 2009-12-16 14:51:06 -0800 | [diff] [blame] | 471 | iput(inode); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 472 | return err; |
| 473 | } |
| 474 | |
| 475 | |
| 476 | /* |
| 477 | * lame release_pages helper. release_pages() isn't exported to |
| 478 | * modules. |
| 479 | */ |
| 480 | static void ceph_release_pages(struct page **pages, int num) |
| 481 | { |
| 482 | struct pagevec pvec; |
| 483 | int i; |
| 484 | |
| 485 | pagevec_init(&pvec, 0); |
| 486 | for (i = 0; i < num; i++) { |
| 487 | if (pagevec_add(&pvec, pages[i]) == 0) |
| 488 | pagevec_release(&pvec); |
| 489 | } |
| 490 | pagevec_release(&pvec); |
| 491 | } |
| 492 | |
| 493 | |
| 494 | /* |
| 495 | * async writeback completion handler. |
| 496 | * |
| 497 | * If we get an error, set the mapping error bit, but not the individual |
| 498 | * page error bits. |
| 499 | */ |
| 500 | static void writepages_finish(struct ceph_osd_request *req, |
| 501 | struct ceph_msg *msg) |
| 502 | { |
| 503 | struct inode *inode = req->r_inode; |
| 504 | struct ceph_osd_reply_head *replyhead; |
| 505 | struct ceph_osd_op *op; |
| 506 | struct ceph_inode_info *ci = ceph_inode(inode); |
| 507 | unsigned wrote; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 508 | struct page *page; |
| 509 | int i; |
| 510 | struct ceph_snap_context *snapc = req->r_snapc; |
| 511 | struct address_space *mapping = inode->i_mapping; |
| 512 | struct writeback_control *wbc = req->r_wbc; |
| 513 | __s32 rc = -EIO; |
| 514 | u64 bytes = 0; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 515 | struct ceph_client *client = ceph_inode_to_client(inode); |
| 516 | long writeback_stat; |
Yehuda Sadeh | e63dc5c | 2010-02-19 00:07:01 +0000 | [diff] [blame] | 517 | unsigned issued = __ceph_caps_issued(ci, NULL); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 518 | |
| 519 | /* parse reply */ |
| 520 | replyhead = msg->front.iov_base; |
| 521 | WARN_ON(le32_to_cpu(replyhead->num_ops) == 0); |
| 522 | op = (void *)(replyhead + 1); |
| 523 | rc = le32_to_cpu(replyhead->result); |
| 524 | bytes = le64_to_cpu(op->extent.length); |
| 525 | |
| 526 | if (rc >= 0) { |
Sage Weil | 79788c6 | 2010-02-02 16:34:04 -0800 | [diff] [blame] | 527 | /* |
| 528 | * Assume we wrote the pages we originally sent. The |
| 529 | * osd might reply with fewer pages if our writeback |
| 530 | * raced with a truncation and was adjusted at the osd, |
| 531 | * so don't believe the reply. |
| 532 | */ |
| 533 | wrote = req->r_num_pages; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 534 | } else { |
| 535 | wrote = 0; |
| 536 | mapping_set_error(mapping, rc); |
| 537 | } |
| 538 | dout("writepages_finish %p rc %d bytes %llu wrote %d (pages)\n", |
| 539 | inode, rc, bytes, wrote); |
| 540 | |
| 541 | /* clean all pages */ |
| 542 | for (i = 0; i < req->r_num_pages; i++) { |
| 543 | page = req->r_pages[i]; |
| 544 | BUG_ON(!page); |
| 545 | WARN_ON(!PageUptodate(page)); |
| 546 | |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 547 | writeback_stat = |
| 548 | atomic_long_dec_return(&client->writeback_count); |
| 549 | if (writeback_stat < |
| 550 | CONGESTION_OFF_THRESH(client->mount_args->congestion_kb)) |
| 551 | clear_bdi_congested(&client->backing_dev_info, |
| 552 | BLK_RW_ASYNC); |
| 553 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 554 | if (i >= wrote) { |
| 555 | dout("inode %p skipping page %p\n", inode, page); |
| 556 | wbc->pages_skipped++; |
| 557 | } |
| 558 | page->private = 0; |
| 559 | ClearPagePrivate(page); |
| 560 | ceph_put_snap_context(snapc); |
| 561 | dout("unlocking %d %p\n", i, page); |
| 562 | end_page_writeback(page); |
Yehuda Sadeh | e63dc5c | 2010-02-19 00:07:01 +0000 | [diff] [blame] | 563 | |
| 564 | /* |
| 565 | * We lost the cache cap, need to truncate the page before |
| 566 | * it is unlocked, otherwise we'd truncate it later in the |
| 567 | * page truncation thread, possibly losing some data that |
| 568 | * raced its way in |
| 569 | */ |
| 570 | if ((issued & CEPH_CAP_FILE_CACHE) == 0) |
| 571 | generic_error_remove_page(inode->i_mapping, page); |
| 572 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 573 | unlock_page(page); |
| 574 | } |
| 575 | dout("%p wrote+cleaned %d pages\n", inode, wrote); |
| 576 | ceph_put_wrbuffer_cap_refs(ci, req->r_num_pages, snapc); |
| 577 | |
| 578 | ceph_release_pages(req->r_pages, req->r_num_pages); |
| 579 | if (req->r_pages_from_pool) |
| 580 | mempool_free(req->r_pages, |
| 581 | ceph_client(inode->i_sb)->wb_pagevec_pool); |
| 582 | else |
| 583 | kfree(req->r_pages); |
| 584 | ceph_osdc_put_request(req); |
| 585 | } |
| 586 | |
| 587 | /* |
| 588 | * allocate a page vec, either directly, or if necessary, via a the |
| 589 | * mempool. we avoid the mempool if we can because req->r_num_pages |
| 590 | * may be less than the maximum write size. |
| 591 | */ |
| 592 | static void alloc_page_vec(struct ceph_client *client, |
| 593 | struct ceph_osd_request *req) |
| 594 | { |
| 595 | req->r_pages = kmalloc(sizeof(struct page *) * req->r_num_pages, |
| 596 | GFP_NOFS); |
| 597 | if (!req->r_pages) { |
| 598 | req->r_pages = mempool_alloc(client->wb_pagevec_pool, GFP_NOFS); |
| 599 | req->r_pages_from_pool = 1; |
| 600 | WARN_ON(!req->r_pages); |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | /* |
| 605 | * initiate async writeback |
| 606 | */ |
| 607 | static int ceph_writepages_start(struct address_space *mapping, |
| 608 | struct writeback_control *wbc) |
| 609 | { |
| 610 | struct inode *inode = mapping->host; |
| 611 | struct backing_dev_info *bdi = mapping->backing_dev_info; |
| 612 | struct ceph_inode_info *ci = ceph_inode(inode); |
Julia Lawall | ec7384e | 2010-01-20 15:16:41 -0800 | [diff] [blame] | 613 | struct ceph_client *client; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 614 | pgoff_t index, start, end; |
| 615 | int range_whole = 0; |
| 616 | int should_loop = 1; |
| 617 | pgoff_t max_pages = 0, max_pages_ever = 0; |
| 618 | struct ceph_snap_context *snapc = NULL, *last_snapc = NULL; |
| 619 | struct pagevec pvec; |
| 620 | int done = 0; |
| 621 | int rc = 0; |
| 622 | unsigned wsize = 1 << inode->i_blkbits; |
| 623 | struct ceph_osd_request *req = NULL; |
| 624 | int do_sync; |
| 625 | u64 snap_size = 0; |
| 626 | |
| 627 | /* |
| 628 | * Include a 'sync' in the OSD request if this is a data |
| 629 | * integrity write (e.g., O_SYNC write or fsync()), or if our |
| 630 | * cap is being revoked. |
| 631 | */ |
| 632 | do_sync = wbc->sync_mode == WB_SYNC_ALL; |
| 633 | if (ceph_caps_revoking(ci, CEPH_CAP_FILE_BUFFER)) |
| 634 | do_sync = 1; |
| 635 | dout("writepages_start %p dosync=%d (mode=%s)\n", |
| 636 | inode, do_sync, |
| 637 | wbc->sync_mode == WB_SYNC_NONE ? "NONE" : |
| 638 | (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD")); |
| 639 | |
| 640 | client = ceph_inode_to_client(inode); |
| 641 | if (client->mount_state == CEPH_MOUNT_SHUTDOWN) { |
| 642 | pr_warning("writepage_start %p on forced umount\n", inode); |
| 643 | return -EIO; /* we're in a forced umount, don't write! */ |
| 644 | } |
Sage Weil | 6b80518 | 2009-10-27 11:50:50 -0700 | [diff] [blame] | 645 | if (client->mount_args->wsize && client->mount_args->wsize < wsize) |
| 646 | wsize = client->mount_args->wsize; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 647 | if (wsize < PAGE_CACHE_SIZE) |
| 648 | wsize = PAGE_CACHE_SIZE; |
| 649 | max_pages_ever = wsize >> PAGE_CACHE_SHIFT; |
| 650 | |
| 651 | pagevec_init(&pvec, 0); |
| 652 | |
| 653 | /* ?? */ |
| 654 | if (wbc->nonblocking && bdi_write_congested(bdi)) { |
| 655 | dout(" writepages congested\n"); |
| 656 | wbc->encountered_congestion = 1; |
| 657 | goto out_final; |
| 658 | } |
| 659 | |
| 660 | /* where to start/end? */ |
| 661 | if (wbc->range_cyclic) { |
| 662 | start = mapping->writeback_index; /* Start from prev offset */ |
| 663 | end = -1; |
| 664 | dout(" cyclic, start at %lu\n", start); |
| 665 | } else { |
| 666 | start = wbc->range_start >> PAGE_CACHE_SHIFT; |
| 667 | end = wbc->range_end >> PAGE_CACHE_SHIFT; |
| 668 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
| 669 | range_whole = 1; |
| 670 | should_loop = 0; |
| 671 | dout(" not cyclic, %lu to %lu\n", start, end); |
| 672 | } |
| 673 | index = start; |
| 674 | |
| 675 | retry: |
| 676 | /* find oldest snap context with dirty data */ |
| 677 | ceph_put_snap_context(snapc); |
| 678 | snapc = get_oldest_context(inode, &snap_size); |
| 679 | if (!snapc) { |
| 680 | /* hmm, why does writepages get called when there |
| 681 | is no dirty data? */ |
| 682 | dout(" no snap context with dirty data?\n"); |
| 683 | goto out; |
| 684 | } |
| 685 | dout(" oldest snapc is %p seq %lld (%d snaps)\n", |
| 686 | snapc, snapc->seq, snapc->num_snaps); |
| 687 | if (last_snapc && snapc != last_snapc) { |
| 688 | /* if we switched to a newer snapc, restart our scan at the |
| 689 | * start of the original file range. */ |
| 690 | dout(" snapc differs from last pass, restarting at %lu\n", |
| 691 | index); |
| 692 | index = start; |
| 693 | } |
| 694 | last_snapc = snapc; |
| 695 | |
| 696 | while (!done && index <= end) { |
| 697 | unsigned i; |
| 698 | int first; |
| 699 | pgoff_t next; |
| 700 | int pvec_pages, locked_pages; |
| 701 | struct page *page; |
| 702 | int want; |
| 703 | u64 offset, len; |
| 704 | struct ceph_osd_request_head *reqhead; |
| 705 | struct ceph_osd_op *op; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 706 | long writeback_stat; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 707 | |
| 708 | next = 0; |
| 709 | locked_pages = 0; |
| 710 | max_pages = max_pages_ever; |
| 711 | |
| 712 | get_more_pages: |
| 713 | first = -1; |
| 714 | want = min(end - index, |
| 715 | min((pgoff_t)PAGEVEC_SIZE, |
| 716 | max_pages - (pgoff_t)locked_pages) - 1) |
| 717 | + 1; |
| 718 | pvec_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 719 | PAGECACHE_TAG_DIRTY, |
| 720 | want); |
| 721 | dout("pagevec_lookup_tag got %d\n", pvec_pages); |
| 722 | if (!pvec_pages && !locked_pages) |
| 723 | break; |
| 724 | for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) { |
| 725 | page = pvec.pages[i]; |
| 726 | dout("? %p idx %lu\n", page, page->index); |
| 727 | if (locked_pages == 0) |
| 728 | lock_page(page); /* first page */ |
| 729 | else if (!trylock_page(page)) |
| 730 | break; |
| 731 | |
| 732 | /* only dirty pages, or our accounting breaks */ |
| 733 | if (unlikely(!PageDirty(page)) || |
| 734 | unlikely(page->mapping != mapping)) { |
| 735 | dout("!dirty or !mapping %p\n", page); |
| 736 | unlock_page(page); |
| 737 | break; |
| 738 | } |
| 739 | if (!wbc->range_cyclic && page->index > end) { |
| 740 | dout("end of range %p\n", page); |
| 741 | done = 1; |
| 742 | unlock_page(page); |
| 743 | break; |
| 744 | } |
| 745 | if (next && (page->index != next)) { |
| 746 | dout("not consecutive %p\n", page); |
| 747 | unlock_page(page); |
| 748 | break; |
| 749 | } |
| 750 | if (wbc->sync_mode != WB_SYNC_NONE) { |
| 751 | dout("waiting on writeback %p\n", page); |
| 752 | wait_on_page_writeback(page); |
| 753 | } |
| 754 | if ((snap_size && page_offset(page) > snap_size) || |
| 755 | (!snap_size && |
| 756 | page_offset(page) > i_size_read(inode))) { |
| 757 | dout("%p page eof %llu\n", page, snap_size ? |
| 758 | snap_size : i_size_read(inode)); |
| 759 | done = 1; |
| 760 | unlock_page(page); |
| 761 | break; |
| 762 | } |
| 763 | if (PageWriteback(page)) { |
| 764 | dout("%p under writeback\n", page); |
| 765 | unlock_page(page); |
| 766 | break; |
| 767 | } |
| 768 | |
| 769 | /* only if matching snap context */ |
| 770 | if (snapc != (void *)page->private) { |
| 771 | dout("page snapc %p != oldest %p\n", |
| 772 | (void *)page->private, snapc); |
| 773 | unlock_page(page); |
| 774 | if (!locked_pages) |
| 775 | continue; /* keep looking for snap */ |
| 776 | break; |
| 777 | } |
| 778 | |
| 779 | if (!clear_page_dirty_for_io(page)) { |
| 780 | dout("%p !clear_page_dirty_for_io\n", page); |
| 781 | unlock_page(page); |
| 782 | break; |
| 783 | } |
| 784 | |
| 785 | /* ok */ |
| 786 | if (locked_pages == 0) { |
| 787 | /* prepare async write request */ |
| 788 | offset = page->index << PAGE_CACHE_SHIFT; |
| 789 | len = wsize; |
| 790 | req = ceph_osdc_new_request(&client->osdc, |
| 791 | &ci->i_layout, |
| 792 | ceph_vino(inode), |
| 793 | offset, &len, |
| 794 | CEPH_OSD_OP_WRITE, |
| 795 | CEPH_OSD_FLAG_WRITE | |
| 796 | CEPH_OSD_FLAG_ONDISK, |
| 797 | snapc, do_sync, |
| 798 | ci->i_truncate_seq, |
| 799 | ci->i_truncate_size, |
| 800 | &inode->i_mtime, true, 1); |
| 801 | max_pages = req->r_num_pages; |
| 802 | |
| 803 | alloc_page_vec(client, req); |
| 804 | req->r_callback = writepages_finish; |
| 805 | req->r_inode = inode; |
| 806 | req->r_wbc = wbc; |
| 807 | } |
| 808 | |
| 809 | /* note position of first page in pvec */ |
| 810 | if (first < 0) |
| 811 | first = i; |
| 812 | dout("%p will write page %p idx %lu\n", |
| 813 | inode, page, page->index); |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 814 | |
| 815 | writeback_stat = atomic_long_inc_return(&client->writeback_count); |
| 816 | if (writeback_stat > CONGESTION_ON_THRESH(client->mount_args->congestion_kb)) { |
| 817 | set_bdi_congested(&client->backing_dev_info, BLK_RW_ASYNC); |
| 818 | } |
| 819 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 820 | set_page_writeback(page); |
| 821 | req->r_pages[locked_pages] = page; |
| 822 | locked_pages++; |
| 823 | next = page->index + 1; |
| 824 | } |
| 825 | |
| 826 | /* did we get anything? */ |
| 827 | if (!locked_pages) |
| 828 | goto release_pvec_pages; |
| 829 | if (i) { |
| 830 | int j; |
| 831 | BUG_ON(!locked_pages || first < 0); |
| 832 | |
| 833 | if (pvec_pages && i == pvec_pages && |
| 834 | locked_pages < max_pages) { |
| 835 | dout("reached end pvec, trying for more\n"); |
| 836 | pagevec_reinit(&pvec); |
| 837 | goto get_more_pages; |
| 838 | } |
| 839 | |
| 840 | /* shift unused pages over in the pvec... we |
| 841 | * will need to release them below. */ |
| 842 | for (j = i; j < pvec_pages; j++) { |
| 843 | dout(" pvec leftover page %p\n", |
| 844 | pvec.pages[j]); |
| 845 | pvec.pages[j-i+first] = pvec.pages[j]; |
| 846 | } |
| 847 | pvec.nr -= i-first; |
| 848 | } |
| 849 | |
| 850 | /* submit the write */ |
| 851 | offset = req->r_pages[0]->index << PAGE_CACHE_SHIFT; |
| 852 | len = min((snap_size ? snap_size : i_size_read(inode)) - offset, |
| 853 | (u64)locked_pages << PAGE_CACHE_SHIFT); |
| 854 | dout("writepages got %d pages at %llu~%llu\n", |
| 855 | locked_pages, offset, len); |
| 856 | |
| 857 | /* revise final length, page count */ |
| 858 | req->r_num_pages = locked_pages; |
| 859 | reqhead = req->r_request->front.iov_base; |
| 860 | op = (void *)(reqhead + 1); |
| 861 | op->extent.length = cpu_to_le64(len); |
| 862 | op->payload_len = cpu_to_le32(len); |
| 863 | req->r_request->hdr.data_len = cpu_to_le32(len); |
| 864 | |
| 865 | ceph_osdc_start_request(&client->osdc, req, true); |
| 866 | req = NULL; |
| 867 | |
| 868 | /* continue? */ |
| 869 | index = next; |
| 870 | wbc->nr_to_write -= locked_pages; |
| 871 | if (wbc->nr_to_write <= 0) |
| 872 | done = 1; |
| 873 | |
| 874 | release_pvec_pages: |
| 875 | dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr, |
| 876 | pvec.nr ? pvec.pages[0] : NULL); |
| 877 | pagevec_release(&pvec); |
| 878 | |
| 879 | if (locked_pages && !done) |
| 880 | goto retry; |
| 881 | } |
| 882 | |
| 883 | if (should_loop && !done) { |
| 884 | /* more to do; loop back to beginning of file */ |
| 885 | dout("writepages looping back to beginning of file\n"); |
| 886 | should_loop = 0; |
| 887 | index = 0; |
| 888 | goto retry; |
| 889 | } |
| 890 | |
| 891 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
| 892 | mapping->writeback_index = index; |
| 893 | |
| 894 | out: |
| 895 | if (req) |
| 896 | ceph_osdc_put_request(req); |
| 897 | if (rc > 0) |
| 898 | rc = 0; /* vfs expects us to return 0 */ |
| 899 | ceph_put_snap_context(snapc); |
| 900 | dout("writepages done, rc = %d\n", rc); |
| 901 | out_final: |
| 902 | return rc; |
| 903 | } |
| 904 | |
| 905 | |
| 906 | |
| 907 | /* |
| 908 | * See if a given @snapc is either writeable, or already written. |
| 909 | */ |
| 910 | static int context_is_writeable_or_written(struct inode *inode, |
| 911 | struct ceph_snap_context *snapc) |
| 912 | { |
| 913 | struct ceph_snap_context *oldest = get_oldest_context(inode, NULL); |
| 914 | return !oldest || snapc->seq <= oldest->seq; |
| 915 | } |
| 916 | |
| 917 | /* |
| 918 | * We are only allowed to write into/dirty the page if the page is |
| 919 | * clean, or already dirty within the same snap context. |
| 920 | */ |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 921 | static int ceph_update_writeable_page(struct file *file, |
| 922 | loff_t pos, unsigned len, |
| 923 | struct page *page) |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 924 | { |
| 925 | struct inode *inode = file->f_dentry->d_inode; |
| 926 | struct ceph_inode_info *ci = ceph_inode(inode); |
| 927 | struct ceph_mds_client *mdsc = &ceph_inode_to_client(inode)->mdsc; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 928 | loff_t page_off = pos & PAGE_CACHE_MASK; |
| 929 | int pos_in_page = pos & ~PAGE_CACHE_MASK; |
| 930 | int end_in_page = pos_in_page + len; |
| 931 | loff_t i_size; |
| 932 | struct ceph_snap_context *snapc; |
| 933 | int r; |
| 934 | |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 935 | retry_locked: |
| 936 | /* writepages currently holds page lock, but if we change that later, */ |
| 937 | wait_on_page_writeback(page); |
| 938 | |
| 939 | /* check snap context */ |
| 940 | BUG_ON(!ci->i_snap_realm); |
| 941 | down_read(&mdsc->snap_rwsem); |
| 942 | BUG_ON(!ci->i_snap_realm->cached_context); |
| 943 | if (page->private && |
| 944 | (void *)page->private != ci->i_snap_realm->cached_context) { |
| 945 | /* |
| 946 | * this page is already dirty in another (older) snap |
| 947 | * context! is it writeable now? |
| 948 | */ |
| 949 | snapc = get_oldest_context(inode, NULL); |
| 950 | up_read(&mdsc->snap_rwsem); |
| 951 | |
| 952 | if (snapc != (void *)page->private) { |
| 953 | dout(" page %p snapc %p not current or oldest\n", |
| 954 | page, (void *)page->private); |
| 955 | /* |
| 956 | * queue for writeback, and wait for snapc to |
| 957 | * be writeable or written |
| 958 | */ |
| 959 | snapc = ceph_get_snap_context((void *)page->private); |
| 960 | unlock_page(page); |
Sage Weil | 3c6f6b7 | 2010-02-09 15:24:44 -0800 | [diff] [blame] | 961 | ceph_queue_writeback(inode); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 962 | wait_event_interruptible(ci->i_cap_wq, |
| 963 | context_is_writeable_or_written(inode, snapc)); |
| 964 | ceph_put_snap_context(snapc); |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 965 | return -EAGAIN; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | /* yay, writeable, do it now (without dropping page lock) */ |
| 969 | dout(" page %p snapc %p not current, but oldest\n", |
| 970 | page, snapc); |
| 971 | if (!clear_page_dirty_for_io(page)) |
| 972 | goto retry_locked; |
| 973 | r = writepage_nounlock(page, NULL); |
| 974 | if (r < 0) |
| 975 | goto fail_nosnap; |
| 976 | goto retry_locked; |
| 977 | } |
| 978 | |
| 979 | if (PageUptodate(page)) { |
| 980 | dout(" page %p already uptodate\n", page); |
| 981 | return 0; |
| 982 | } |
| 983 | |
| 984 | /* full page? */ |
| 985 | if (pos_in_page == 0 && len == PAGE_CACHE_SIZE) |
| 986 | return 0; |
| 987 | |
| 988 | /* past end of file? */ |
| 989 | i_size = inode->i_size; /* caller holds i_mutex */ |
| 990 | |
| 991 | if (i_size + len > inode->i_sb->s_maxbytes) { |
| 992 | /* file is too big */ |
| 993 | r = -EINVAL; |
| 994 | goto fail; |
| 995 | } |
| 996 | |
| 997 | if (page_off >= i_size || |
| 998 | (pos_in_page == 0 && (pos+len) >= i_size && |
| 999 | end_in_page - pos_in_page != PAGE_CACHE_SIZE)) { |
| 1000 | dout(" zeroing %p 0 - %d and %d - %d\n", |
| 1001 | page, pos_in_page, end_in_page, (int)PAGE_CACHE_SIZE); |
| 1002 | zero_user_segments(page, |
| 1003 | 0, pos_in_page, |
| 1004 | end_in_page, PAGE_CACHE_SIZE); |
| 1005 | return 0; |
| 1006 | } |
| 1007 | |
| 1008 | /* we need to read it. */ |
| 1009 | up_read(&mdsc->snap_rwsem); |
| 1010 | r = readpage_nounlock(file, page); |
| 1011 | if (r < 0) |
| 1012 | goto fail_nosnap; |
| 1013 | goto retry_locked; |
| 1014 | |
| 1015 | fail: |
| 1016 | up_read(&mdsc->snap_rwsem); |
| 1017 | fail_nosnap: |
| 1018 | unlock_page(page); |
| 1019 | return r; |
| 1020 | } |
| 1021 | |
| 1022 | /* |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 1023 | * We are only allowed to write into/dirty the page if the page is |
| 1024 | * clean, or already dirty within the same snap context. |
| 1025 | */ |
| 1026 | static int ceph_write_begin(struct file *file, struct address_space *mapping, |
| 1027 | loff_t pos, unsigned len, unsigned flags, |
| 1028 | struct page **pagep, void **fsdata) |
| 1029 | { |
| 1030 | struct inode *inode = file->f_dentry->d_inode; |
| 1031 | struct page *page; |
| 1032 | pgoff_t index = pos >> PAGE_CACHE_SHIFT; |
| 1033 | int r; |
| 1034 | |
| 1035 | do { |
| 1036 | /* get a page*/ |
| 1037 | page = grab_cache_page_write_begin(mapping, index, 0); |
| 1038 | if (!page) |
| 1039 | return -ENOMEM; |
| 1040 | *pagep = page; |
| 1041 | |
| 1042 | dout("write_begin file %p inode %p page %p %d~%d\n", file, |
| 1043 | inode, page, (int)pos, (int)len); |
| 1044 | |
| 1045 | r = ceph_update_writeable_page(file, pos, len, page); |
| 1046 | } while (r == -EAGAIN); |
| 1047 | |
| 1048 | return r; |
| 1049 | } |
| 1050 | |
| 1051 | /* |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1052 | * we don't do anything in here that simple_write_end doesn't do |
| 1053 | * except adjust dirty page accounting and drop read lock on |
| 1054 | * mdsc->snap_rwsem. |
| 1055 | */ |
| 1056 | static int ceph_write_end(struct file *file, struct address_space *mapping, |
| 1057 | loff_t pos, unsigned len, unsigned copied, |
| 1058 | struct page *page, void *fsdata) |
| 1059 | { |
| 1060 | struct inode *inode = file->f_dentry->d_inode; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 1061 | struct ceph_client *client = ceph_inode_to_client(inode); |
| 1062 | struct ceph_mds_client *mdsc = &client->mdsc; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1063 | unsigned from = pos & (PAGE_CACHE_SIZE - 1); |
| 1064 | int check_cap = 0; |
| 1065 | |
| 1066 | dout("write_end file %p inode %p page %p %d~%d (%d)\n", file, |
| 1067 | inode, page, (int)pos, (int)copied, (int)len); |
| 1068 | |
| 1069 | /* zero the stale part of the page if we did a short copy */ |
| 1070 | if (copied < len) |
| 1071 | zero_user_segment(page, from+copied, len); |
| 1072 | |
| 1073 | /* did file size increase? */ |
| 1074 | /* (no need for i_size_read(); we caller holds i_mutex */ |
| 1075 | if (pos+copied > inode->i_size) |
| 1076 | check_cap = ceph_inode_set_size(inode, pos+copied); |
| 1077 | |
| 1078 | if (!PageUptodate(page)) |
| 1079 | SetPageUptodate(page); |
| 1080 | |
| 1081 | set_page_dirty(page); |
| 1082 | |
| 1083 | unlock_page(page); |
| 1084 | up_read(&mdsc->snap_rwsem); |
| 1085 | page_cache_release(page); |
| 1086 | |
| 1087 | if (check_cap) |
| 1088 | ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL); |
| 1089 | |
| 1090 | return copied; |
| 1091 | } |
| 1092 | |
| 1093 | /* |
| 1094 | * we set .direct_IO to indicate direct io is supported, but since we |
| 1095 | * intercept O_DIRECT reads and writes early, this function should |
| 1096 | * never get called. |
| 1097 | */ |
| 1098 | static ssize_t ceph_direct_io(int rw, struct kiocb *iocb, |
| 1099 | const struct iovec *iov, |
| 1100 | loff_t pos, unsigned long nr_segs) |
| 1101 | { |
| 1102 | WARN_ON(1); |
| 1103 | return -EINVAL; |
| 1104 | } |
| 1105 | |
| 1106 | const struct address_space_operations ceph_aops = { |
| 1107 | .readpage = ceph_readpage, |
| 1108 | .readpages = ceph_readpages, |
| 1109 | .writepage = ceph_writepage, |
| 1110 | .writepages = ceph_writepages_start, |
| 1111 | .write_begin = ceph_write_begin, |
| 1112 | .write_end = ceph_write_end, |
| 1113 | .set_page_dirty = ceph_set_page_dirty, |
| 1114 | .invalidatepage = ceph_invalidatepage, |
| 1115 | .releasepage = ceph_releasepage, |
| 1116 | .direct_IO = ceph_direct_io, |
| 1117 | }; |
| 1118 | |
| 1119 | |
| 1120 | /* |
| 1121 | * vm ops |
| 1122 | */ |
| 1123 | |
| 1124 | /* |
| 1125 | * Reuse write_begin here for simplicity. |
| 1126 | */ |
| 1127 | static int ceph_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 1128 | { |
| 1129 | struct inode *inode = vma->vm_file->f_dentry->d_inode; |
| 1130 | struct page *page = vmf->page; |
| 1131 | struct ceph_mds_client *mdsc = &ceph_inode_to_client(inode)->mdsc; |
| 1132 | loff_t off = page->index << PAGE_CACHE_SHIFT; |
| 1133 | loff_t size, len; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1134 | int ret; |
| 1135 | |
| 1136 | size = i_size_read(inode); |
| 1137 | if (off + PAGE_CACHE_SIZE <= size) |
| 1138 | len = PAGE_CACHE_SIZE; |
| 1139 | else |
| 1140 | len = size & ~PAGE_CACHE_MASK; |
| 1141 | |
| 1142 | dout("page_mkwrite %p %llu~%llu page %p idx %lu\n", inode, |
| 1143 | off, len, page, page->index); |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 1144 | |
| 1145 | lock_page(page); |
| 1146 | |
| 1147 | ret = VM_FAULT_NOPAGE; |
| 1148 | if ((off > size) || |
| 1149 | (page->mapping != inode->i_mapping)) |
| 1150 | goto out; |
| 1151 | |
| 1152 | ret = ceph_update_writeable_page(vma->vm_file, off, len, page); |
| 1153 | if (ret == 0) { |
| 1154 | /* success. we'll keep the page locked. */ |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1155 | set_page_dirty(page); |
| 1156 | up_read(&mdsc->snap_rwsem); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1157 | ret = VM_FAULT_LOCKED; |
| 1158 | } else { |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 1159 | if (ret == -ENOMEM) |
| 1160 | ret = VM_FAULT_OOM; |
| 1161 | else |
| 1162 | ret = VM_FAULT_SIGBUS; |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1163 | } |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 1164 | out: |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1165 | dout("page_mkwrite %p %llu~%llu = %d\n", inode, off, len, ret); |
Yehuda Sadeh | 4af6b22 | 2010-02-09 11:02:51 -0800 | [diff] [blame] | 1166 | if (ret != VM_FAULT_LOCKED) |
| 1167 | unlock_page(page); |
Sage Weil | 1d3576f | 2009-10-06 11:31:09 -0700 | [diff] [blame] | 1168 | return ret; |
| 1169 | } |
| 1170 | |
| 1171 | static struct vm_operations_struct ceph_vmops = { |
| 1172 | .fault = filemap_fault, |
| 1173 | .page_mkwrite = ceph_page_mkwrite, |
| 1174 | }; |
| 1175 | |
| 1176 | int ceph_mmap(struct file *file, struct vm_area_struct *vma) |
| 1177 | { |
| 1178 | struct address_space *mapping = file->f_mapping; |
| 1179 | |
| 1180 | if (!mapping->a_ops->readpage) |
| 1181 | return -ENOEXEC; |
| 1182 | file_accessed(file); |
| 1183 | vma->vm_ops = &ceph_vmops; |
| 1184 | vma->vm_flags |= VM_CAN_NONLINEAR; |
| 1185 | return 0; |
| 1186 | } |