Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/blocklayout/blocklayout.c |
| 3 | * |
| 4 | * Module for the NFSv4.1 pNFS block layout driver. |
| 5 | * |
| 6 | * Copyright (c) 2006 The Regents of the University of Michigan. |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * Andy Adamson <andros@citi.umich.edu> |
| 10 | * Fred Isaman <iisaman@umich.edu> |
| 11 | * |
| 12 | * permission is granted to use, copy, create derivative works and |
| 13 | * redistribute this software and such derivative works for any purpose, |
| 14 | * so long as the name of the university of michigan is not used in |
| 15 | * any advertising or publicity pertaining to the use or distribution |
| 16 | * of this software without specific, written prior authorization. if |
| 17 | * the above copyright notice or any other identification of the |
| 18 | * university of michigan is included in any copy of any portion of |
| 19 | * this software, then the disclaimer below must also be included. |
| 20 | * |
| 21 | * this software is provided as is, without representation from the |
| 22 | * university of michigan as to its fitness for any purpose, and without |
| 23 | * warranty by the university of michigan of any kind, either express |
| 24 | * or implied, including without limitation the implied warranties of |
| 25 | * merchantability and fitness for a particular purpose. the regents |
| 26 | * of the university of michigan shall not be liable for any damages, |
| 27 | * including special, indirect, incidental, or consequential damages, |
| 28 | * with respect to any claim arising out or in connection with the use |
| 29 | * of the software, even if it has been or is hereafter advised of the |
| 30 | * possibility of such damages. |
| 31 | */ |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 32 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 33 | #include <linux/module.h> |
| 34 | #include <linux/init.h> |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 35 | #include <linux/mount.h> |
| 36 | #include <linux/namei.h> |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 37 | #include <linux/bio.h> /* struct bio */ |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 38 | #include <linux/buffer_head.h> /* various write calls */ |
Heiko Carstens | 88c9e42 | 2011-08-02 09:57:35 +0200 | [diff] [blame] | 39 | #include <linux/prefetch.h> |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 40 | |
| 41 | #include "blocklayout.h" |
| 42 | |
| 43 | #define NFSDBG_FACILITY NFSDBG_PNFS_LD |
| 44 | |
| 45 | MODULE_LICENSE("GPL"); |
| 46 | MODULE_AUTHOR("Andy Adamson <andros@citi.umich.edu>"); |
| 47 | MODULE_DESCRIPTION("The NFSv4.1 pNFS Block layout driver"); |
| 48 | |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 49 | struct dentry *bl_device_pipe; |
| 50 | wait_queue_head_t bl_wq; |
| 51 | |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 52 | static void print_page(struct page *page) |
| 53 | { |
| 54 | dprintk("PRINTPAGE page %p\n", page); |
| 55 | dprintk(" PagePrivate %d\n", PagePrivate(page)); |
| 56 | dprintk(" PageUptodate %d\n", PageUptodate(page)); |
| 57 | dprintk(" PageError %d\n", PageError(page)); |
| 58 | dprintk(" PageDirty %d\n", PageDirty(page)); |
| 59 | dprintk(" PageReferenced %d\n", PageReferenced(page)); |
| 60 | dprintk(" PageLocked %d\n", PageLocked(page)); |
| 61 | dprintk(" PageWriteback %d\n", PageWriteback(page)); |
| 62 | dprintk(" PageMappedToDisk %d\n", PageMappedToDisk(page)); |
| 63 | dprintk("\n"); |
| 64 | } |
| 65 | |
| 66 | /* Given the be associated with isect, determine if page data needs to be |
| 67 | * initialized. |
| 68 | */ |
| 69 | static int is_hole(struct pnfs_block_extent *be, sector_t isect) |
| 70 | { |
| 71 | if (be->be_state == PNFS_BLOCK_NONE_DATA) |
| 72 | return 1; |
| 73 | else if (be->be_state != PNFS_BLOCK_INVALID_DATA) |
| 74 | return 0; |
| 75 | else |
| 76 | return !bl_is_sector_init(be->be_inval, isect); |
| 77 | } |
| 78 | |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 79 | /* Given the be associated with isect, determine if page data can be |
| 80 | * written to disk. |
| 81 | */ |
| 82 | static int is_writable(struct pnfs_block_extent *be, sector_t isect) |
| 83 | { |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 84 | return (be->be_state == PNFS_BLOCK_READWRITE_DATA || |
| 85 | be->be_state == PNFS_BLOCK_INVALID_DATA); |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 86 | } |
| 87 | |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 88 | /* The data we are handed might be spread across several bios. We need |
| 89 | * to track when the last one is finished. |
| 90 | */ |
| 91 | struct parallel_io { |
| 92 | struct kref refcnt; |
| 93 | struct rpc_call_ops call_ops; |
| 94 | void (*pnfs_callback) (void *data); |
| 95 | void *data; |
| 96 | }; |
| 97 | |
| 98 | static inline struct parallel_io *alloc_parallel(void *data) |
| 99 | { |
| 100 | struct parallel_io *rv; |
| 101 | |
| 102 | rv = kmalloc(sizeof(*rv), GFP_NOFS); |
| 103 | if (rv) { |
| 104 | rv->data = data; |
| 105 | kref_init(&rv->refcnt); |
| 106 | } |
| 107 | return rv; |
| 108 | } |
| 109 | |
| 110 | static inline void get_parallel(struct parallel_io *p) |
| 111 | { |
| 112 | kref_get(&p->refcnt); |
| 113 | } |
| 114 | |
| 115 | static void destroy_parallel(struct kref *kref) |
| 116 | { |
| 117 | struct parallel_io *p = container_of(kref, struct parallel_io, refcnt); |
| 118 | |
| 119 | dprintk("%s enter\n", __func__); |
| 120 | p->pnfs_callback(p->data); |
| 121 | kfree(p); |
| 122 | } |
| 123 | |
| 124 | static inline void put_parallel(struct parallel_io *p) |
| 125 | { |
| 126 | kref_put(&p->refcnt, destroy_parallel); |
| 127 | } |
| 128 | |
| 129 | static struct bio * |
| 130 | bl_submit_bio(int rw, struct bio *bio) |
| 131 | { |
| 132 | if (bio) { |
| 133 | get_parallel(bio->bi_private); |
| 134 | dprintk("%s submitting %s bio %u@%llu\n", __func__, |
| 135 | rw == READ ? "read" : "write", |
| 136 | bio->bi_size, (unsigned long long)bio->bi_sector); |
| 137 | submit_bio(rw, bio); |
| 138 | } |
| 139 | return NULL; |
| 140 | } |
| 141 | |
| 142 | static struct bio *bl_alloc_init_bio(int npg, sector_t isect, |
| 143 | struct pnfs_block_extent *be, |
| 144 | void (*end_io)(struct bio *, int err), |
| 145 | struct parallel_io *par) |
| 146 | { |
| 147 | struct bio *bio; |
| 148 | |
| 149 | bio = bio_alloc(GFP_NOIO, npg); |
| 150 | if (!bio) |
| 151 | return NULL; |
| 152 | |
| 153 | bio->bi_sector = isect - be->be_f_offset + be->be_v_offset; |
| 154 | bio->bi_bdev = be->be_mdev; |
| 155 | bio->bi_end_io = end_io; |
| 156 | bio->bi_private = par; |
| 157 | return bio; |
| 158 | } |
| 159 | |
| 160 | static struct bio *bl_add_page_to_bio(struct bio *bio, int npg, int rw, |
| 161 | sector_t isect, struct page *page, |
| 162 | struct pnfs_block_extent *be, |
| 163 | void (*end_io)(struct bio *, int err), |
| 164 | struct parallel_io *par) |
| 165 | { |
| 166 | retry: |
| 167 | if (!bio) { |
| 168 | bio = bl_alloc_init_bio(npg, isect, be, end_io, par); |
| 169 | if (!bio) |
| 170 | return ERR_PTR(-ENOMEM); |
| 171 | } |
| 172 | if (bio_add_page(bio, page, PAGE_CACHE_SIZE, 0) < PAGE_CACHE_SIZE) { |
| 173 | bio = bl_submit_bio(rw, bio); |
| 174 | goto retry; |
| 175 | } |
| 176 | return bio; |
| 177 | } |
| 178 | |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 179 | /* This is basically copied from mpage_end_io_read */ |
| 180 | static void bl_end_io_read(struct bio *bio, int err) |
| 181 | { |
| 182 | struct parallel_io *par = bio->bi_private; |
| 183 | const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); |
| 184 | struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1; |
| 185 | struct nfs_read_data *rdata = (struct nfs_read_data *)par->data; |
| 186 | |
| 187 | do { |
| 188 | struct page *page = bvec->bv_page; |
| 189 | |
| 190 | if (--bvec >= bio->bi_io_vec) |
| 191 | prefetchw(&bvec->bv_page->flags); |
| 192 | if (uptodate) |
| 193 | SetPageUptodate(page); |
| 194 | } while (bvec >= bio->bi_io_vec); |
| 195 | if (!uptodate) { |
| 196 | if (!rdata->pnfs_error) |
| 197 | rdata->pnfs_error = -EIO; |
Peng Tao | 1b0ae06 | 2011-09-22 21:50:12 -0400 | [diff] [blame] | 198 | pnfs_set_lo_fail(rdata->lseg); |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 199 | } |
| 200 | bio_put(bio); |
| 201 | put_parallel(par); |
| 202 | } |
| 203 | |
| 204 | static void bl_read_cleanup(struct work_struct *work) |
| 205 | { |
| 206 | struct rpc_task *task; |
| 207 | struct nfs_read_data *rdata; |
| 208 | dprintk("%s enter\n", __func__); |
| 209 | task = container_of(work, struct rpc_task, u.tk_work); |
| 210 | rdata = container_of(task, struct nfs_read_data, task); |
| 211 | pnfs_ld_read_done(rdata); |
| 212 | } |
| 213 | |
| 214 | static void |
| 215 | bl_end_par_io_read(void *data) |
| 216 | { |
| 217 | struct nfs_read_data *rdata = data; |
| 218 | |
Peng Tao | 82b906d | 2012-01-12 23:18:43 +0800 | [diff] [blame] | 219 | rdata->task.tk_status = rdata->pnfs_error; |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 220 | INIT_WORK(&rdata->task.u.tk_work, bl_read_cleanup); |
| 221 | schedule_work(&rdata->task.u.tk_work); |
| 222 | } |
| 223 | |
| 224 | /* We don't want normal .rpc_call_done callback used, so we replace it |
| 225 | * with this stub. |
| 226 | */ |
| 227 | static void bl_rpc_do_nothing(struct rpc_task *task, void *calldata) |
| 228 | { |
| 229 | return; |
| 230 | } |
| 231 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 232 | static enum pnfs_try_status |
| 233 | bl_read_pagelist(struct nfs_read_data *rdata) |
| 234 | { |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 235 | int i, hole; |
| 236 | struct bio *bio = NULL; |
| 237 | struct pnfs_block_extent *be = NULL, *cow_read = NULL; |
| 238 | sector_t isect, extent_length = 0; |
| 239 | struct parallel_io *par; |
| 240 | loff_t f_offset = rdata->args.offset; |
| 241 | size_t count = rdata->args.count; |
| 242 | struct page **pages = rdata->args.pages; |
| 243 | int pg_index = rdata->args.pgbase >> PAGE_CACHE_SHIFT; |
| 244 | |
| 245 | dprintk("%s enter nr_pages %u offset %lld count %Zd\n", __func__, |
| 246 | rdata->npages, f_offset, count); |
| 247 | |
| 248 | par = alloc_parallel(rdata); |
| 249 | if (!par) |
| 250 | goto use_mds; |
| 251 | par->call_ops = *rdata->mds_ops; |
| 252 | par->call_ops.rpc_call_done = bl_rpc_do_nothing; |
| 253 | par->pnfs_callback = bl_end_par_io_read; |
| 254 | /* At this point, we can no longer jump to use_mds */ |
| 255 | |
| 256 | isect = (sector_t) (f_offset >> SECTOR_SHIFT); |
| 257 | /* Code assumes extents are page-aligned */ |
| 258 | for (i = pg_index; i < rdata->npages; i++) { |
| 259 | if (!extent_length) { |
| 260 | /* We've used up the previous extent */ |
| 261 | bl_put_extent(be); |
| 262 | bl_put_extent(cow_read); |
| 263 | bio = bl_submit_bio(READ, bio); |
| 264 | /* Get the next one */ |
| 265 | be = bl_find_get_extent(BLK_LSEG2EXT(rdata->lseg), |
| 266 | isect, &cow_read); |
| 267 | if (!be) { |
| 268 | rdata->pnfs_error = -EIO; |
| 269 | goto out; |
| 270 | } |
| 271 | extent_length = be->be_length - |
| 272 | (isect - be->be_f_offset); |
| 273 | if (cow_read) { |
| 274 | sector_t cow_length = cow_read->be_length - |
| 275 | (isect - cow_read->be_f_offset); |
| 276 | extent_length = min(extent_length, cow_length); |
| 277 | } |
| 278 | } |
| 279 | hole = is_hole(be, isect); |
| 280 | if (hole && !cow_read) { |
| 281 | bio = bl_submit_bio(READ, bio); |
| 282 | /* Fill hole w/ zeroes w/o accessing device */ |
| 283 | dprintk("%s Zeroing page for hole\n", __func__); |
| 284 | zero_user_segment(pages[i], 0, PAGE_CACHE_SIZE); |
| 285 | print_page(pages[i]); |
| 286 | SetPageUptodate(pages[i]); |
| 287 | } else { |
| 288 | struct pnfs_block_extent *be_read; |
| 289 | |
| 290 | be_read = (hole && cow_read) ? cow_read : be; |
| 291 | bio = bl_add_page_to_bio(bio, rdata->npages - i, READ, |
| 292 | isect, pages[i], be_read, |
| 293 | bl_end_io_read, par); |
| 294 | if (IS_ERR(bio)) { |
| 295 | rdata->pnfs_error = PTR_ERR(bio); |
Peng Tao | e6d05a7 | 2011-09-22 21:50:16 -0400 | [diff] [blame] | 296 | bio = NULL; |
Fred Isaman | 9549ec0 | 2011-07-30 20:52:53 -0400 | [diff] [blame] | 297 | goto out; |
| 298 | } |
| 299 | } |
| 300 | isect += PAGE_CACHE_SECTORS; |
| 301 | extent_length -= PAGE_CACHE_SECTORS; |
| 302 | } |
| 303 | if ((isect << SECTOR_SHIFT) >= rdata->inode->i_size) { |
| 304 | rdata->res.eof = 1; |
| 305 | rdata->res.count = rdata->inode->i_size - f_offset; |
| 306 | } else { |
| 307 | rdata->res.count = (isect << SECTOR_SHIFT) - f_offset; |
| 308 | } |
| 309 | out: |
| 310 | bl_put_extent(be); |
| 311 | bl_put_extent(cow_read); |
| 312 | bl_submit_bio(READ, bio); |
| 313 | put_parallel(par); |
| 314 | return PNFS_ATTEMPTED; |
| 315 | |
| 316 | use_mds: |
| 317 | dprintk("Giving up and using normal NFS\n"); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 318 | return PNFS_NOT_ATTEMPTED; |
| 319 | } |
| 320 | |
Fred Isaman | 31e6306 | 2011-07-30 20:52:55 -0400 | [diff] [blame] | 321 | static void mark_extents_written(struct pnfs_block_layout *bl, |
| 322 | __u64 offset, __u32 count) |
| 323 | { |
| 324 | sector_t isect, end; |
| 325 | struct pnfs_block_extent *be; |
| 326 | |
| 327 | dprintk("%s(%llu, %u)\n", __func__, offset, count); |
| 328 | if (count == 0) |
| 329 | return; |
| 330 | isect = (offset & (long)(PAGE_CACHE_MASK)) >> SECTOR_SHIFT; |
| 331 | end = (offset + count + PAGE_CACHE_SIZE - 1) & (long)(PAGE_CACHE_MASK); |
| 332 | end >>= SECTOR_SHIFT; |
| 333 | while (isect < end) { |
| 334 | sector_t len; |
| 335 | be = bl_find_get_extent(bl, isect, NULL); |
| 336 | BUG_ON(!be); /* FIXME */ |
| 337 | len = min(end, be->be_f_offset + be->be_length) - isect; |
| 338 | if (be->be_state == PNFS_BLOCK_INVALID_DATA) |
| 339 | bl_mark_for_commit(be, isect, len); /* What if fails? */ |
| 340 | isect += len; |
| 341 | bl_put_extent(be); |
| 342 | } |
| 343 | } |
| 344 | |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 345 | static void bl_end_io_write_zero(struct bio *bio, int err) |
| 346 | { |
| 347 | struct parallel_io *par = bio->bi_private; |
| 348 | const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); |
| 349 | struct bio_vec *bvec = bio->bi_io_vec + bio->bi_vcnt - 1; |
| 350 | struct nfs_write_data *wdata = (struct nfs_write_data *)par->data; |
| 351 | |
| 352 | do { |
| 353 | struct page *page = bvec->bv_page; |
| 354 | |
| 355 | if (--bvec >= bio->bi_io_vec) |
| 356 | prefetchw(&bvec->bv_page->flags); |
| 357 | /* This is the zeroing page we added */ |
| 358 | end_page_writeback(page); |
| 359 | page_cache_release(page); |
| 360 | } while (bvec >= bio->bi_io_vec); |
| 361 | if (!uptodate) { |
| 362 | if (!wdata->pnfs_error) |
| 363 | wdata->pnfs_error = -EIO; |
Peng Tao | 1b0ae06 | 2011-09-22 21:50:12 -0400 | [diff] [blame] | 364 | pnfs_set_lo_fail(wdata->lseg); |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 365 | } |
| 366 | bio_put(bio); |
| 367 | put_parallel(par); |
| 368 | } |
| 369 | |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 370 | /* This is basically copied from mpage_end_io_read */ |
| 371 | static void bl_end_io_write(struct bio *bio, int err) |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 372 | { |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 373 | struct parallel_io *par = bio->bi_private; |
| 374 | const int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags); |
| 375 | struct nfs_write_data *wdata = (struct nfs_write_data *)par->data; |
| 376 | |
| 377 | if (!uptodate) { |
| 378 | if (!wdata->pnfs_error) |
| 379 | wdata->pnfs_error = -EIO; |
Peng Tao | 1b0ae06 | 2011-09-22 21:50:12 -0400 | [diff] [blame] | 380 | pnfs_set_lo_fail(wdata->lseg); |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 381 | } |
| 382 | bio_put(bio); |
| 383 | put_parallel(par); |
| 384 | } |
| 385 | |
| 386 | /* Function scheduled for call during bl_end_par_io_write, |
| 387 | * it marks sectors as written and extends the commitlist. |
| 388 | */ |
| 389 | static void bl_write_cleanup(struct work_struct *work) |
| 390 | { |
| 391 | struct rpc_task *task; |
| 392 | struct nfs_write_data *wdata; |
| 393 | dprintk("%s enter\n", __func__); |
| 394 | task = container_of(work, struct rpc_task, u.tk_work); |
| 395 | wdata = container_of(task, struct nfs_write_data, task); |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 396 | if (!wdata->pnfs_error) { |
Fred Isaman | 31e6306 | 2011-07-30 20:52:55 -0400 | [diff] [blame] | 397 | /* Marks for LAYOUTCOMMIT */ |
Fred Isaman | 31e6306 | 2011-07-30 20:52:55 -0400 | [diff] [blame] | 398 | mark_extents_written(BLK_LSEG2EXT(wdata->lseg), |
| 399 | wdata->args.offset, wdata->args.count); |
| 400 | } |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 401 | pnfs_ld_write_done(wdata); |
| 402 | } |
| 403 | |
| 404 | /* Called when last of bios associated with a bl_write_pagelist call finishes */ |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 405 | static void bl_end_par_io_write(void *data) |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 406 | { |
| 407 | struct nfs_write_data *wdata = data; |
| 408 | |
Peng Tao | 82b906d | 2012-01-12 23:18:43 +0800 | [diff] [blame] | 409 | wdata->task.tk_status = wdata->pnfs_error; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 410 | wdata->verf.committed = NFS_FILE_SYNC; |
| 411 | INIT_WORK(&wdata->task.u.tk_work, bl_write_cleanup); |
| 412 | schedule_work(&wdata->task.u.tk_work); |
| 413 | } |
| 414 | |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 415 | /* FIXME STUB - mark intersection of layout and page as bad, so is not |
| 416 | * used again. |
| 417 | */ |
| 418 | static void mark_bad_read(void) |
| 419 | { |
| 420 | return; |
| 421 | } |
| 422 | |
| 423 | /* |
| 424 | * map_block: map a requested I/0 block (isect) into an offset in the LVM |
| 425 | * block_device |
| 426 | */ |
| 427 | static void |
| 428 | map_block(struct buffer_head *bh, sector_t isect, struct pnfs_block_extent *be) |
| 429 | { |
| 430 | dprintk("%s enter be=%p\n", __func__, be); |
| 431 | |
| 432 | set_buffer_mapped(bh); |
| 433 | bh->b_bdev = be->be_mdev; |
| 434 | bh->b_blocknr = (isect - be->be_f_offset + be->be_v_offset) >> |
| 435 | (be->be_mdev->bd_inode->i_blkbits - SECTOR_SHIFT); |
| 436 | |
| 437 | dprintk("%s isect %llu, bh->b_blocknr %ld, using bsize %Zd\n", |
| 438 | __func__, (unsigned long long)isect, (long)bh->b_blocknr, |
| 439 | bh->b_size); |
| 440 | return; |
| 441 | } |
| 442 | |
| 443 | /* Given an unmapped page, zero it or read in page for COW, page is locked |
| 444 | * by caller. |
| 445 | */ |
| 446 | static int |
| 447 | init_page_for_write(struct page *page, struct pnfs_block_extent *cow_read) |
| 448 | { |
| 449 | struct buffer_head *bh = NULL; |
| 450 | int ret = 0; |
| 451 | sector_t isect; |
| 452 | |
| 453 | dprintk("%s enter, %p\n", __func__, page); |
| 454 | BUG_ON(PageUptodate(page)); |
| 455 | if (!cow_read) { |
| 456 | zero_user_segment(page, 0, PAGE_SIZE); |
| 457 | SetPageUptodate(page); |
| 458 | goto cleanup; |
| 459 | } |
| 460 | |
| 461 | bh = alloc_page_buffers(page, PAGE_CACHE_SIZE, 0); |
| 462 | if (!bh) { |
| 463 | ret = -ENOMEM; |
| 464 | goto cleanup; |
| 465 | } |
| 466 | |
| 467 | isect = (sector_t) page->index << PAGE_CACHE_SECTOR_SHIFT; |
| 468 | map_block(bh, isect, cow_read); |
| 469 | if (!bh_uptodate_or_lock(bh)) |
| 470 | ret = bh_submit_read(bh); |
| 471 | if (ret) |
| 472 | goto cleanup; |
| 473 | SetPageUptodate(page); |
| 474 | |
| 475 | cleanup: |
| 476 | bl_put_extent(cow_read); |
| 477 | if (bh) |
| 478 | free_buffer_head(bh); |
| 479 | if (ret) { |
| 480 | /* Need to mark layout with bad read...should now |
| 481 | * just use nfs4 for reads and writes. |
| 482 | */ |
| 483 | mark_bad_read(); |
| 484 | } |
| 485 | return ret; |
| 486 | } |
| 487 | |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 488 | static enum pnfs_try_status |
| 489 | bl_write_pagelist(struct nfs_write_data *wdata, int sync) |
| 490 | { |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 491 | int i, ret, npg_zero, pg_index, last = 0; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 492 | struct bio *bio = NULL; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 493 | struct pnfs_block_extent *be = NULL, *cow_read = NULL; |
| 494 | sector_t isect, last_isect = 0, extent_length = 0; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 495 | struct parallel_io *par; |
| 496 | loff_t offset = wdata->args.offset; |
| 497 | size_t count = wdata->args.count; |
| 498 | struct page **pages = wdata->args.pages; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 499 | struct page *page; |
| 500 | pgoff_t index; |
| 501 | u64 temp; |
| 502 | int npg_per_block = |
| 503 | NFS_SERVER(wdata->inode)->pnfs_blksize >> PAGE_CACHE_SHIFT; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 504 | |
| 505 | dprintk("%s enter, %Zu@%lld\n", __func__, count, offset); |
| 506 | /* At this point, wdata->pages is a (sequential) list of nfs_pages. |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 507 | * We want to write each, and if there is an error set pnfs_error |
| 508 | * to have it redone using nfs. |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 509 | */ |
| 510 | par = alloc_parallel(wdata); |
| 511 | if (!par) |
| 512 | return PNFS_NOT_ATTEMPTED; |
| 513 | par->call_ops = *wdata->mds_ops; |
| 514 | par->call_ops.rpc_call_done = bl_rpc_do_nothing; |
| 515 | par->pnfs_callback = bl_end_par_io_write; |
| 516 | /* At this point, have to be more careful with error handling */ |
| 517 | |
| 518 | isect = (sector_t) ((offset & (long)PAGE_CACHE_MASK) >> SECTOR_SHIFT); |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 519 | be = bl_find_get_extent(BLK_LSEG2EXT(wdata->lseg), isect, &cow_read); |
| 520 | if (!be || !is_writable(be, isect)) { |
| 521 | dprintk("%s no matching extents!\n", __func__); |
| 522 | wdata->pnfs_error = -EINVAL; |
| 523 | goto out; |
| 524 | } |
| 525 | |
| 526 | /* First page inside INVALID extent */ |
| 527 | if (be->be_state == PNFS_BLOCK_INVALID_DATA) { |
| 528 | temp = offset >> PAGE_CACHE_SHIFT; |
| 529 | npg_zero = do_div(temp, npg_per_block); |
| 530 | isect = (sector_t) (((offset - npg_zero * PAGE_CACHE_SIZE) & |
| 531 | (long)PAGE_CACHE_MASK) >> SECTOR_SHIFT); |
| 532 | extent_length = be->be_length - (isect - be->be_f_offset); |
| 533 | |
| 534 | fill_invalid_ext: |
| 535 | dprintk("%s need to zero %d pages\n", __func__, npg_zero); |
| 536 | for (;npg_zero > 0; npg_zero--) { |
Peng Tao | 7542274 | 2011-09-22 21:50:17 -0400 | [diff] [blame] | 537 | if (bl_is_sector_init(be->be_inval, isect)) { |
| 538 | dprintk("isect %llu already init\n", |
| 539 | (unsigned long long)isect); |
| 540 | goto next_page; |
| 541 | } |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 542 | /* page ref released in bl_end_io_write_zero */ |
| 543 | index = isect >> PAGE_CACHE_SECTOR_SHIFT; |
| 544 | dprintk("%s zero %dth page: index %lu isect %llu\n", |
| 545 | __func__, npg_zero, index, |
| 546 | (unsigned long long)isect); |
| 547 | page = |
| 548 | find_or_create_page(wdata->inode->i_mapping, index, |
| 549 | GFP_NOFS); |
| 550 | if (!page) { |
| 551 | dprintk("%s oom\n", __func__); |
| 552 | wdata->pnfs_error = -ENOMEM; |
| 553 | goto out; |
| 554 | } |
| 555 | |
| 556 | /* PageDirty: Other will write this out |
| 557 | * PageWriteback: Other is writing this out |
| 558 | * PageUptodate: It was read before |
| 559 | * sector_initialized: already written out |
| 560 | */ |
Peng Tao | 7542274 | 2011-09-22 21:50:17 -0400 | [diff] [blame] | 561 | if (PageDirty(page) || PageWriteback(page)) { |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 562 | print_page(page); |
| 563 | unlock_page(page); |
| 564 | page_cache_release(page); |
| 565 | goto next_page; |
| 566 | } |
| 567 | if (!PageUptodate(page)) { |
| 568 | /* New page, readin or zero it */ |
| 569 | init_page_for_write(page, cow_read); |
| 570 | } |
| 571 | set_page_writeback(page); |
| 572 | unlock_page(page); |
| 573 | |
| 574 | ret = bl_mark_sectors_init(be->be_inval, isect, |
| 575 | PAGE_CACHE_SECTORS, |
| 576 | NULL); |
| 577 | if (unlikely(ret)) { |
| 578 | dprintk("%s bl_mark_sectors_init fail %d\n", |
| 579 | __func__, ret); |
| 580 | end_page_writeback(page); |
| 581 | page_cache_release(page); |
| 582 | wdata->pnfs_error = ret; |
| 583 | goto out; |
| 584 | } |
| 585 | bio = bl_add_page_to_bio(bio, npg_zero, WRITE, |
| 586 | isect, page, be, |
| 587 | bl_end_io_write_zero, par); |
| 588 | if (IS_ERR(bio)) { |
| 589 | wdata->pnfs_error = PTR_ERR(bio); |
Peng Tao | e6d05a7 | 2011-09-22 21:50:16 -0400 | [diff] [blame] | 590 | bio = NULL; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 591 | goto out; |
| 592 | } |
| 593 | /* FIXME: This should be done in bi_end_io */ |
| 594 | mark_extents_written(BLK_LSEG2EXT(wdata->lseg), |
| 595 | page->index << PAGE_CACHE_SHIFT, |
| 596 | PAGE_CACHE_SIZE); |
| 597 | next_page: |
| 598 | isect += PAGE_CACHE_SECTORS; |
| 599 | extent_length -= PAGE_CACHE_SECTORS; |
| 600 | } |
| 601 | if (last) |
| 602 | goto write_done; |
| 603 | } |
| 604 | bio = bl_submit_bio(WRITE, bio); |
| 605 | |
| 606 | /* Middle pages */ |
| 607 | pg_index = wdata->args.pgbase >> PAGE_CACHE_SHIFT; |
| 608 | for (i = pg_index; i < wdata->npages; i++) { |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 609 | if (!extent_length) { |
| 610 | /* We've used up the previous extent */ |
| 611 | bl_put_extent(be); |
| 612 | bio = bl_submit_bio(WRITE, bio); |
| 613 | /* Get the next one */ |
| 614 | be = bl_find_get_extent(BLK_LSEG2EXT(wdata->lseg), |
| 615 | isect, NULL); |
| 616 | if (!be || !is_writable(be, isect)) { |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 617 | wdata->pnfs_error = -EINVAL; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 618 | goto out; |
| 619 | } |
| 620 | extent_length = be->be_length - |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 621 | (isect - be->be_f_offset); |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 622 | } |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 623 | if (be->be_state == PNFS_BLOCK_INVALID_DATA) { |
| 624 | ret = bl_mark_sectors_init(be->be_inval, isect, |
| 625 | PAGE_CACHE_SECTORS, |
| 626 | NULL); |
| 627 | if (unlikely(ret)) { |
| 628 | dprintk("%s bl_mark_sectors_init fail %d\n", |
| 629 | __func__, ret); |
| 630 | wdata->pnfs_error = ret; |
| 631 | goto out; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 632 | } |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 633 | } |
| 634 | bio = bl_add_page_to_bio(bio, wdata->npages - i, WRITE, |
| 635 | isect, pages[i], be, |
| 636 | bl_end_io_write, par); |
| 637 | if (IS_ERR(bio)) { |
| 638 | wdata->pnfs_error = PTR_ERR(bio); |
Peng Tao | e6d05a7 | 2011-09-22 21:50:16 -0400 | [diff] [blame] | 639 | bio = NULL; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 640 | goto out; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 641 | } |
| 642 | isect += PAGE_CACHE_SECTORS; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 643 | last_isect = isect; |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 644 | extent_length -= PAGE_CACHE_SECTORS; |
| 645 | } |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 646 | |
| 647 | /* Last page inside INVALID extent */ |
| 648 | if (be->be_state == PNFS_BLOCK_INVALID_DATA) { |
| 649 | bio = bl_submit_bio(WRITE, bio); |
| 650 | temp = last_isect >> PAGE_CACHE_SECTOR_SHIFT; |
| 651 | npg_zero = npg_per_block - do_div(temp, npg_per_block); |
| 652 | if (npg_zero < npg_per_block) { |
| 653 | last = 1; |
| 654 | goto fill_invalid_ext; |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | write_done: |
| 659 | wdata->res.count = (last_isect << SECTOR_SHIFT) - (offset); |
| 660 | if (count < wdata->res.count) { |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 661 | wdata->res.count = count; |
Peng Tao | 71cdd40 | 2011-07-30 20:52:56 -0400 | [diff] [blame] | 662 | } |
Fred Isaman | 650e2d3 | 2011-07-30 20:52:54 -0400 | [diff] [blame] | 663 | out: |
| 664 | bl_put_extent(be); |
| 665 | bl_submit_bio(WRITE, bio); |
| 666 | put_parallel(par); |
| 667 | return PNFS_ATTEMPTED; |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 668 | } |
| 669 | |
Fred Isaman | 9e69296 | 2011-07-30 20:52:41 -0400 | [diff] [blame] | 670 | /* FIXME - range ignored */ |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 671 | static void |
Fred Isaman | 9e69296 | 2011-07-30 20:52:41 -0400 | [diff] [blame] | 672 | release_extents(struct pnfs_block_layout *bl, struct pnfs_layout_range *range) |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 673 | { |
Fred Isaman | 9e69296 | 2011-07-30 20:52:41 -0400 | [diff] [blame] | 674 | int i; |
| 675 | struct pnfs_block_extent *be; |
| 676 | |
| 677 | spin_lock(&bl->bl_ext_lock); |
| 678 | for (i = 0; i < EXTENT_LISTS; i++) { |
| 679 | while (!list_empty(&bl->bl_extents[i])) { |
| 680 | be = list_first_entry(&bl->bl_extents[i], |
| 681 | struct pnfs_block_extent, |
| 682 | be_node); |
| 683 | list_del(&be->be_node); |
| 684 | bl_put_extent(be); |
| 685 | } |
| 686 | } |
| 687 | spin_unlock(&bl->bl_ext_lock); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 688 | } |
| 689 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 690 | static void |
| 691 | release_inval_marks(struct pnfs_inval_markings *marks) |
| 692 | { |
Fred Isaman | c1c2a4c | 2011-07-30 20:52:49 -0400 | [diff] [blame] | 693 | struct pnfs_inval_tracking *pos, *temp; |
| 694 | |
| 695 | list_for_each_entry_safe(pos, temp, &marks->im_tree.mtt_stub, it_link) { |
| 696 | list_del(&pos->it_link); |
| 697 | kfree(pos); |
| 698 | } |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 699 | return; |
| 700 | } |
| 701 | |
| 702 | static void bl_free_layout_hdr(struct pnfs_layout_hdr *lo) |
| 703 | { |
| 704 | struct pnfs_block_layout *bl = BLK_LO2EXT(lo); |
| 705 | |
| 706 | dprintk("%s enter\n", __func__); |
| 707 | release_extents(bl, NULL); |
| 708 | release_inval_marks(&bl->bl_inval); |
| 709 | kfree(bl); |
| 710 | } |
| 711 | |
| 712 | static struct pnfs_layout_hdr *bl_alloc_layout_hdr(struct inode *inode, |
| 713 | gfp_t gfp_flags) |
| 714 | { |
| 715 | struct pnfs_block_layout *bl; |
| 716 | |
| 717 | dprintk("%s enter\n", __func__); |
| 718 | bl = kzalloc(sizeof(*bl), gfp_flags); |
| 719 | if (!bl) |
| 720 | return NULL; |
| 721 | spin_lock_init(&bl->bl_ext_lock); |
| 722 | INIT_LIST_HEAD(&bl->bl_extents[0]); |
| 723 | INIT_LIST_HEAD(&bl->bl_extents[1]); |
| 724 | INIT_LIST_HEAD(&bl->bl_commit); |
| 725 | INIT_LIST_HEAD(&bl->bl_committing); |
| 726 | bl->bl_count = 0; |
| 727 | bl->bl_blocksize = NFS_SERVER(inode)->pnfs_blksize >> SECTOR_SHIFT; |
| 728 | BL_INIT_INVAL_MARKS(&bl->bl_inval, bl->bl_blocksize); |
| 729 | return &bl->bl_layout; |
| 730 | } |
| 731 | |
Fred Isaman | a60d2eb | 2011-07-30 20:52:44 -0400 | [diff] [blame] | 732 | static void bl_free_lseg(struct pnfs_layout_segment *lseg) |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 733 | { |
Fred Isaman | a60d2eb | 2011-07-30 20:52:44 -0400 | [diff] [blame] | 734 | dprintk("%s enter\n", __func__); |
| 735 | kfree(lseg); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 736 | } |
| 737 | |
Fred Isaman | a60d2eb | 2011-07-30 20:52:44 -0400 | [diff] [blame] | 738 | /* We pretty much ignore lseg, and store all data layout wide, so we |
| 739 | * can correctly merge. |
| 740 | */ |
| 741 | static struct pnfs_layout_segment *bl_alloc_lseg(struct pnfs_layout_hdr *lo, |
| 742 | struct nfs4_layoutget_res *lgr, |
| 743 | gfp_t gfp_flags) |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 744 | { |
Fred Isaman | a60d2eb | 2011-07-30 20:52:44 -0400 | [diff] [blame] | 745 | struct pnfs_layout_segment *lseg; |
| 746 | int status; |
| 747 | |
| 748 | dprintk("%s enter\n", __func__); |
| 749 | lseg = kzalloc(sizeof(*lseg), gfp_flags); |
| 750 | if (!lseg) |
| 751 | return ERR_PTR(-ENOMEM); |
| 752 | status = nfs4_blk_process_layoutget(lo, lgr, gfp_flags); |
| 753 | if (status) { |
| 754 | /* We don't want to call the full-blown bl_free_lseg, |
| 755 | * since on error extents were not touched. |
| 756 | */ |
| 757 | kfree(lseg); |
| 758 | return ERR_PTR(status); |
| 759 | } |
| 760 | return lseg; |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static void |
| 764 | bl_encode_layoutcommit(struct pnfs_layout_hdr *lo, struct xdr_stream *xdr, |
| 765 | const struct nfs4_layoutcommit_args *arg) |
| 766 | { |
Fred Isaman | 90ace12 | 2011-07-30 20:52:51 -0400 | [diff] [blame] | 767 | dprintk("%s enter\n", __func__); |
| 768 | encode_pnfs_block_layoutupdate(BLK_LO2EXT(lo), xdr, arg); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | static void |
| 772 | bl_cleanup_layoutcommit(struct nfs4_layoutcommit_data *lcdata) |
| 773 | { |
Fred Isaman | b2be781 | 2011-07-30 20:52:52 -0400 | [diff] [blame] | 774 | struct pnfs_layout_hdr *lo = NFS_I(lcdata->args.inode)->layout; |
| 775 | |
| 776 | dprintk("%s enter\n", __func__); |
| 777 | clean_pnfs_block_layoutupdate(BLK_LO2EXT(lo), &lcdata->args, lcdata->res.status); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 778 | } |
| 779 | |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 780 | static void free_blk_mountid(struct block_mount_id *mid) |
| 781 | { |
| 782 | if (mid) { |
Peng Tao | 93a3844 | 2012-01-12 23:18:47 +0800 | [diff] [blame^] | 783 | struct pnfs_block_dev *dev, *tmp; |
| 784 | |
| 785 | /* No need to take bm_lock as we are last user freeing bm_devlist */ |
| 786 | list_for_each_entry_safe(dev, tmp, &mid->bm_devlist, bm_node) { |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 787 | list_del(&dev->bm_node); |
| 788 | bl_free_block_dev(dev); |
| 789 | } |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 790 | kfree(mid); |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | /* This is mostly copied from the filelayout's get_device_info function. |
| 795 | * It seems much of this should be at the generic pnfs level. |
| 796 | */ |
| 797 | static struct pnfs_block_dev * |
| 798 | nfs4_blk_get_deviceinfo(struct nfs_server *server, const struct nfs_fh *fh, |
| 799 | struct nfs4_deviceid *d_id) |
| 800 | { |
| 801 | struct pnfs_device *dev; |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 802 | struct pnfs_block_dev *rv; |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 803 | u32 max_resp_sz; |
| 804 | int max_pages; |
| 805 | struct page **pages = NULL; |
| 806 | int i, rc; |
| 807 | |
| 808 | /* |
| 809 | * Use the session max response size as the basis for setting |
| 810 | * GETDEVICEINFO's maxcount |
| 811 | */ |
| 812 | max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz; |
| 813 | max_pages = max_resp_sz >> PAGE_SHIFT; |
| 814 | dprintk("%s max_resp_sz %u max_pages %d\n", |
| 815 | __func__, max_resp_sz, max_pages); |
| 816 | |
| 817 | dev = kmalloc(sizeof(*dev), GFP_NOFS); |
| 818 | if (!dev) { |
| 819 | dprintk("%s kmalloc failed\n", __func__); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 820 | return ERR_PTR(-ENOMEM); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | pages = kzalloc(max_pages * sizeof(struct page *), GFP_NOFS); |
| 824 | if (pages == NULL) { |
| 825 | kfree(dev); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 826 | return ERR_PTR(-ENOMEM); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 827 | } |
| 828 | for (i = 0; i < max_pages; i++) { |
| 829 | pages[i] = alloc_page(GFP_NOFS); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 830 | if (!pages[i]) { |
| 831 | rv = ERR_PTR(-ENOMEM); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 832 | goto out_free; |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 833 | } |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | memcpy(&dev->dev_id, d_id, sizeof(*d_id)); |
| 837 | dev->layout_type = LAYOUT_BLOCK_VOLUME; |
| 838 | dev->pages = pages; |
| 839 | dev->pgbase = 0; |
| 840 | dev->pglen = PAGE_SIZE * max_pages; |
| 841 | dev->mincount = 0; |
| 842 | |
| 843 | dprintk("%s: dev_id: %s\n", __func__, dev->dev_id.data); |
| 844 | rc = nfs4_proc_getdeviceinfo(server, dev); |
| 845 | dprintk("%s getdevice info returns %d\n", __func__, rc); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 846 | if (rc) { |
| 847 | rv = ERR_PTR(rc); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 848 | goto out_free; |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 849 | } |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 850 | |
| 851 | rv = nfs4_blk_decode_device(server, dev); |
| 852 | out_free: |
| 853 | for (i = 0; i < max_pages; i++) |
| 854 | __free_page(pages[i]); |
| 855 | kfree(pages); |
| 856 | kfree(dev); |
| 857 | return rv; |
| 858 | } |
| 859 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 860 | static int |
| 861 | bl_set_layoutdriver(struct nfs_server *server, const struct nfs_fh *fh) |
| 862 | { |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 863 | struct block_mount_id *b_mt_id = NULL; |
| 864 | struct pnfs_devicelist *dlist = NULL; |
| 865 | struct pnfs_block_dev *bdev; |
| 866 | LIST_HEAD(block_disklist); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 867 | int status, i; |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 868 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 869 | dprintk("%s enter\n", __func__); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 870 | |
| 871 | if (server->pnfs_blksize == 0) { |
| 872 | dprintk("%s Server did not return blksize\n", __func__); |
| 873 | return -EINVAL; |
| 874 | } |
| 875 | b_mt_id = kzalloc(sizeof(struct block_mount_id), GFP_NOFS); |
| 876 | if (!b_mt_id) { |
| 877 | status = -ENOMEM; |
| 878 | goto out_error; |
| 879 | } |
| 880 | /* Initialize nfs4 block layout mount id */ |
| 881 | spin_lock_init(&b_mt_id->bm_lock); |
| 882 | INIT_LIST_HEAD(&b_mt_id->bm_devlist); |
| 883 | |
| 884 | dlist = kmalloc(sizeof(struct pnfs_devicelist), GFP_NOFS); |
| 885 | if (!dlist) { |
| 886 | status = -ENOMEM; |
| 887 | goto out_error; |
| 888 | } |
| 889 | dlist->eof = 0; |
| 890 | while (!dlist->eof) { |
| 891 | status = nfs4_proc_getdevicelist(server, fh, dlist); |
| 892 | if (status) |
| 893 | goto out_error; |
| 894 | dprintk("%s GETDEVICELIST numdevs=%i, eof=%i\n", |
| 895 | __func__, dlist->num_devs, dlist->eof); |
| 896 | for (i = 0; i < dlist->num_devs; i++) { |
| 897 | bdev = nfs4_blk_get_deviceinfo(server, fh, |
| 898 | &dlist->dev_id[i]); |
Jim Rees | 516f2e2 | 2011-09-22 21:50:08 -0400 | [diff] [blame] | 899 | if (IS_ERR(bdev)) { |
| 900 | status = PTR_ERR(bdev); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 901 | goto out_error; |
| 902 | } |
| 903 | spin_lock(&b_mt_id->bm_lock); |
| 904 | list_add(&bdev->bm_node, &b_mt_id->bm_devlist); |
| 905 | spin_unlock(&b_mt_id->bm_lock); |
| 906 | } |
| 907 | } |
| 908 | dprintk("%s SUCCESS\n", __func__); |
| 909 | server->pnfs_ld_data = b_mt_id; |
| 910 | |
| 911 | out_return: |
| 912 | kfree(dlist); |
| 913 | return status; |
| 914 | |
| 915 | out_error: |
| 916 | free_blk_mountid(b_mt_id); |
| 917 | goto out_return; |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | static int |
| 921 | bl_clear_layoutdriver(struct nfs_server *server) |
| 922 | { |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 923 | struct block_mount_id *b_mt_id = server->pnfs_ld_data; |
| 924 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 925 | dprintk("%s enter\n", __func__); |
Fred Isaman | 2f9fd18 | 2011-07-30 20:52:46 -0400 | [diff] [blame] | 926 | free_blk_mountid(b_mt_id); |
| 927 | dprintk("%s RETURNS\n", __func__); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 928 | return 0; |
| 929 | } |
| 930 | |
Benny Halevy | e9643fe | 2011-07-30 20:52:40 -0400 | [diff] [blame] | 931 | static const struct nfs_pageio_ops bl_pg_read_ops = { |
| 932 | .pg_init = pnfs_generic_pg_init_read, |
| 933 | .pg_test = pnfs_generic_pg_test, |
| 934 | .pg_doio = pnfs_generic_pg_readpages, |
| 935 | }; |
| 936 | |
| 937 | static const struct nfs_pageio_ops bl_pg_write_ops = { |
| 938 | .pg_init = pnfs_generic_pg_init_write, |
| 939 | .pg_test = pnfs_generic_pg_test, |
| 940 | .pg_doio = pnfs_generic_pg_writepages, |
| 941 | }; |
| 942 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 943 | static struct pnfs_layoutdriver_type blocklayout_type = { |
| 944 | .id = LAYOUT_BLOCK_VOLUME, |
| 945 | .name = "LAYOUT_BLOCK_VOLUME", |
| 946 | .read_pagelist = bl_read_pagelist, |
| 947 | .write_pagelist = bl_write_pagelist, |
| 948 | .alloc_layout_hdr = bl_alloc_layout_hdr, |
| 949 | .free_layout_hdr = bl_free_layout_hdr, |
| 950 | .alloc_lseg = bl_alloc_lseg, |
| 951 | .free_lseg = bl_free_lseg, |
| 952 | .encode_layoutcommit = bl_encode_layoutcommit, |
| 953 | .cleanup_layoutcommit = bl_cleanup_layoutcommit, |
| 954 | .set_layoutdriver = bl_set_layoutdriver, |
| 955 | .clear_layoutdriver = bl_clear_layoutdriver, |
Benny Halevy | e9643fe | 2011-07-30 20:52:40 -0400 | [diff] [blame] | 956 | .pg_read_ops = &bl_pg_read_ops, |
| 957 | .pg_write_ops = &bl_pg_write_ops, |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 958 | }; |
| 959 | |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 960 | static const struct rpc_pipe_ops bl_upcall_ops = { |
Peng Tao | c122515 | 2011-09-22 21:50:10 -0400 | [diff] [blame] | 961 | .upcall = rpc_pipe_generic_upcall, |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 962 | .downcall = bl_pipe_downcall, |
| 963 | .destroy_msg = bl_pipe_destroy_msg, |
| 964 | }; |
| 965 | |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 966 | static int __init nfs4blocklayout_init(void) |
| 967 | { |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 968 | struct vfsmount *mnt; |
| 969 | struct path path; |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 970 | int ret; |
| 971 | |
| 972 | dprintk("%s: NFSv4 Block Layout Driver Registering...\n", __func__); |
| 973 | |
| 974 | ret = pnfs_register_layoutdriver(&blocklayout_type); |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 975 | if (ret) |
| 976 | goto out; |
| 977 | |
| 978 | init_waitqueue_head(&bl_wq); |
| 979 | |
| 980 | mnt = rpc_get_mount(); |
| 981 | if (IS_ERR(mnt)) { |
| 982 | ret = PTR_ERR(mnt); |
| 983 | goto out_remove; |
| 984 | } |
| 985 | |
| 986 | ret = vfs_path_lookup(mnt->mnt_root, |
| 987 | mnt, |
| 988 | NFS_PIPE_DIRNAME, 0, &path); |
| 989 | if (ret) |
Peng Tao | 760383f | 2011-09-22 21:50:11 -0400 | [diff] [blame] | 990 | goto out_putrpc; |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 991 | |
| 992 | bl_device_pipe = rpc_mkpipe(path.dentry, "blocklayout", NULL, |
| 993 | &bl_upcall_ops, 0); |
Peng Tao | 760383f | 2011-09-22 21:50:11 -0400 | [diff] [blame] | 994 | path_put(&path); |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 995 | if (IS_ERR(bl_device_pipe)) { |
| 996 | ret = PTR_ERR(bl_device_pipe); |
Peng Tao | 760383f | 2011-09-22 21:50:11 -0400 | [diff] [blame] | 997 | goto out_putrpc; |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 998 | } |
| 999 | out: |
| 1000 | return ret; |
| 1001 | |
Peng Tao | 760383f | 2011-09-22 21:50:11 -0400 | [diff] [blame] | 1002 | out_putrpc: |
| 1003 | rpc_put_mount(); |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 1004 | out_remove: |
| 1005 | pnfs_unregister_layoutdriver(&blocklayout_type); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 1006 | return ret; |
| 1007 | } |
| 1008 | |
| 1009 | static void __exit nfs4blocklayout_exit(void) |
| 1010 | { |
| 1011 | dprintk("%s: NFSv4 Block Layout Driver Unregistering...\n", |
| 1012 | __func__); |
| 1013 | |
| 1014 | pnfs_unregister_layoutdriver(&blocklayout_type); |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 1015 | rpc_unlink(bl_device_pipe); |
Peng Tao | 760383f | 2011-09-22 21:50:11 -0400 | [diff] [blame] | 1016 | rpc_put_mount(); |
Fred Isaman | 155e752 | 2011-07-30 20:52:39 -0400 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | MODULE_ALIAS("nfs-layouttype4-3"); |
| 1020 | |
| 1021 | module_init(nfs4blocklayout_init); |
| 1022 | module_exit(nfs4blocklayout_exit); |