Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Ram backed block device driver. |
| 3 | * |
| 4 | * Copyright (C) 2007 Nick Piggin |
| 5 | * Copyright (C) 2007 Novell Inc. |
| 6 | * |
| 7 | * Parts derived from drivers/block/rd.c, and drivers/block/loop.c, copyright |
| 8 | * of their respective owners. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/moduleparam.h> |
| 14 | #include <linux/major.h> |
| 15 | #include <linux/blkdev.h> |
| 16 | #include <linux/bio.h> |
| 17 | #include <linux/highmem.h> |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 18 | #include <linux/mutex.h> |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 19 | #include <linux/radix-tree.h> |
Al Viro | ff01bb4 | 2011-09-16 02:31:11 -0400 | [diff] [blame] | 20 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Dan Williams | 34c0fd5 | 2016-01-15 16:56:14 -0800 | [diff] [blame] | 22 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
| 23 | #include <linux/pfn_t.h> |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 24 | #include <linux/dax.h> |
Dan Williams | 34c0fd5 | 2016-01-15 16:56:14 -0800 | [diff] [blame] | 25 | #endif |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 26 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 27 | #include <linux/uaccess.h> |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 28 | |
| 29 | #define SECTOR_SHIFT 9 |
| 30 | #define PAGE_SECTORS_SHIFT (PAGE_SHIFT - SECTOR_SHIFT) |
| 31 | #define PAGE_SECTORS (1 << PAGE_SECTORS_SHIFT) |
| 32 | |
| 33 | /* |
| 34 | * Each block ramdisk device has a radix_tree brd_pages of pages that stores |
| 35 | * the pages containing the block device's contents. A brd page's ->index is |
| 36 | * its offset in PAGE_SIZE units. This is similar to, but in no way connected |
| 37 | * with, the kernel's pagecache or buffer cache (which sit above our block |
| 38 | * device). |
| 39 | */ |
| 40 | struct brd_device { |
| 41 | int brd_number; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 42 | |
| 43 | struct request_queue *brd_queue; |
| 44 | struct gendisk *brd_disk; |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 45 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
| 46 | struct dax_device *dax_dev; |
| 47 | #endif |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 48 | struct list_head brd_list; |
| 49 | |
| 50 | /* |
| 51 | * Backing store of pages and lock to protect it. This is the contents |
| 52 | * of the block device. |
| 53 | */ |
| 54 | spinlock_t brd_lock; |
| 55 | struct radix_tree_root brd_pages; |
| 56 | }; |
| 57 | |
| 58 | /* |
| 59 | * Look up and return a brd's page for a given sector. |
| 60 | */ |
Arnd Bergmann | 2a48fc0 | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 61 | static DEFINE_MUTEX(brd_mutex); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 62 | static struct page *brd_lookup_page(struct brd_device *brd, sector_t sector) |
| 63 | { |
| 64 | pgoff_t idx; |
| 65 | struct page *page; |
| 66 | |
| 67 | /* |
| 68 | * The page lifetime is protected by the fact that we have opened the |
| 69 | * device node -- brd pages will never be deleted under us, so we |
| 70 | * don't need any further locking or refcounting. |
| 71 | * |
| 72 | * This is strictly true for the radix-tree nodes as well (ie. we |
| 73 | * don't actually need the rcu_read_lock()), however that is not a |
| 74 | * documented feature of the radix-tree API so it is better to be |
| 75 | * safe here (we don't have total exclusion from radix tree updates |
| 76 | * here, only deletes). |
| 77 | */ |
| 78 | rcu_read_lock(); |
| 79 | idx = sector >> PAGE_SECTORS_SHIFT; /* sector to page index */ |
| 80 | page = radix_tree_lookup(&brd->brd_pages, idx); |
| 81 | rcu_read_unlock(); |
| 82 | |
| 83 | BUG_ON(page && page->index != idx); |
| 84 | |
| 85 | return page; |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Look up and return a brd's page for a given sector. |
| 90 | * If one does not exist, allocate an empty page, and insert that. Then |
| 91 | * return it. |
| 92 | */ |
| 93 | static struct page *brd_insert_page(struct brd_device *brd, sector_t sector) |
| 94 | { |
| 95 | pgoff_t idx; |
| 96 | struct page *page; |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 97 | gfp_t gfp_flags; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 98 | |
| 99 | page = brd_lookup_page(brd, sector); |
| 100 | if (page) |
| 101 | return page; |
| 102 | |
| 103 | /* |
| 104 | * Must use NOIO because we don't want to recurse back into the |
| 105 | * block or filesystem layers from page reclaim. |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 106 | * |
Matthew Wilcox | a7a97fc | 2015-02-16 15:59:41 -0800 | [diff] [blame] | 107 | * Cannot support DAX and highmem, because our ->direct_access |
| 108 | * routine for DAX must return memory that is always addressable. |
| 109 | * If DAX was reworked to use pfns and kmap throughout, this |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 110 | * restriction might be able to be lifted. |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 111 | */ |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 112 | gfp_flags = GFP_NOIO | __GFP_ZERO; |
Matthew Wilcox | a7a97fc | 2015-02-16 15:59:41 -0800 | [diff] [blame] | 113 | #ifndef CONFIG_BLK_DEV_RAM_DAX |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 114 | gfp_flags |= __GFP_HIGHMEM; |
| 115 | #endif |
Petr Tesarik | 26defe3 | 2008-04-22 05:36:52 +0200 | [diff] [blame] | 116 | page = alloc_page(gfp_flags); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 117 | if (!page) |
| 118 | return NULL; |
| 119 | |
| 120 | if (radix_tree_preload(GFP_NOIO)) { |
| 121 | __free_page(page); |
| 122 | return NULL; |
| 123 | } |
| 124 | |
| 125 | spin_lock(&brd->brd_lock); |
| 126 | idx = sector >> PAGE_SECTORS_SHIFT; |
Brian Behlendorf | dfd20b2 | 2013-05-24 15:55:28 -0700 | [diff] [blame] | 127 | page->index = idx; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 128 | if (radix_tree_insert(&brd->brd_pages, idx, page)) { |
| 129 | __free_page(page); |
| 130 | page = radix_tree_lookup(&brd->brd_pages, idx); |
| 131 | BUG_ON(!page); |
| 132 | BUG_ON(page->index != idx); |
Brian Behlendorf | dfd20b2 | 2013-05-24 15:55:28 -0700 | [diff] [blame] | 133 | } |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 134 | spin_unlock(&brd->brd_lock); |
| 135 | |
| 136 | radix_tree_preload_end(); |
| 137 | |
| 138 | return page; |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Free all backing store pages and radix tree. This must only be called when |
| 143 | * there are no other users of the device. |
| 144 | */ |
| 145 | #define FREE_BATCH 16 |
| 146 | static void brd_free_pages(struct brd_device *brd) |
| 147 | { |
| 148 | unsigned long pos = 0; |
| 149 | struct page *pages[FREE_BATCH]; |
| 150 | int nr_pages; |
| 151 | |
| 152 | do { |
| 153 | int i; |
| 154 | |
| 155 | nr_pages = radix_tree_gang_lookup(&brd->brd_pages, |
| 156 | (void **)pages, pos, FREE_BATCH); |
| 157 | |
| 158 | for (i = 0; i < nr_pages; i++) { |
| 159 | void *ret; |
| 160 | |
| 161 | BUG_ON(pages[i]->index < pos); |
| 162 | pos = pages[i]->index; |
| 163 | ret = radix_tree_delete(&brd->brd_pages, pos); |
| 164 | BUG_ON(!ret || ret != pages[i]); |
| 165 | __free_page(pages[i]); |
| 166 | } |
| 167 | |
| 168 | pos++; |
| 169 | |
| 170 | /* |
| 171 | * This assumes radix_tree_gang_lookup always returns as |
| 172 | * many pages as possible. If the radix-tree code changes, |
| 173 | * so will this have to. |
| 174 | */ |
| 175 | } while (nr_pages == FREE_BATCH); |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * copy_to_brd_setup must be called before copy_to_brd. It may sleep. |
| 180 | */ |
| 181 | static int copy_to_brd_setup(struct brd_device *brd, sector_t sector, size_t n) |
| 182 | { |
| 183 | unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT; |
| 184 | size_t copy; |
| 185 | |
| 186 | copy = min_t(size_t, n, PAGE_SIZE - offset); |
| 187 | if (!brd_insert_page(brd, sector)) |
Matthew Wilcox | 96f8d8e | 2014-06-04 16:07:50 -0700 | [diff] [blame] | 188 | return -ENOSPC; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 189 | if (copy < n) { |
| 190 | sector += copy >> SECTOR_SHIFT; |
| 191 | if (!brd_insert_page(brd, sector)) |
Matthew Wilcox | 96f8d8e | 2014-06-04 16:07:50 -0700 | [diff] [blame] | 192 | return -ENOSPC; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 193 | } |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | * Copy n bytes from src to the brd starting at sector. Does not sleep. |
| 199 | */ |
| 200 | static void copy_to_brd(struct brd_device *brd, const void *src, |
| 201 | sector_t sector, size_t n) |
| 202 | { |
| 203 | struct page *page; |
| 204 | void *dst; |
| 205 | unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT; |
| 206 | size_t copy; |
| 207 | |
| 208 | copy = min_t(size_t, n, PAGE_SIZE - offset); |
| 209 | page = brd_lookup_page(brd, sector); |
| 210 | BUG_ON(!page); |
| 211 | |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 212 | dst = kmap_atomic(page); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 213 | memcpy(dst + offset, src, copy); |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 214 | kunmap_atomic(dst); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 215 | |
| 216 | if (copy < n) { |
| 217 | src += copy; |
| 218 | sector += copy >> SECTOR_SHIFT; |
| 219 | copy = n - copy; |
| 220 | page = brd_lookup_page(brd, sector); |
| 221 | BUG_ON(!page); |
| 222 | |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 223 | dst = kmap_atomic(page); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 224 | memcpy(dst, src, copy); |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 225 | kunmap_atomic(dst); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
| 229 | /* |
| 230 | * Copy n bytes to dst from the brd starting at sector. Does not sleep. |
| 231 | */ |
| 232 | static void copy_from_brd(void *dst, struct brd_device *brd, |
| 233 | sector_t sector, size_t n) |
| 234 | { |
| 235 | struct page *page; |
| 236 | void *src; |
| 237 | unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT; |
| 238 | size_t copy; |
| 239 | |
| 240 | copy = min_t(size_t, n, PAGE_SIZE - offset); |
| 241 | page = brd_lookup_page(brd, sector); |
| 242 | if (page) { |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 243 | src = kmap_atomic(page); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 244 | memcpy(dst, src + offset, copy); |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 245 | kunmap_atomic(src); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 246 | } else |
| 247 | memset(dst, 0, copy); |
| 248 | |
| 249 | if (copy < n) { |
| 250 | dst += copy; |
| 251 | sector += copy >> SECTOR_SHIFT; |
| 252 | copy = n - copy; |
| 253 | page = brd_lookup_page(brd, sector); |
| 254 | if (page) { |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 255 | src = kmap_atomic(page); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 256 | memcpy(dst, src, copy); |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 257 | kunmap_atomic(src); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 258 | } else |
| 259 | memset(dst, 0, copy); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * Process a single bvec of a bio. |
| 265 | */ |
| 266 | static int brd_do_bvec(struct brd_device *brd, struct page *page, |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 267 | unsigned int len, unsigned int off, bool is_write, |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 268 | sector_t sector) |
| 269 | { |
| 270 | void *mem; |
| 271 | int err = 0; |
| 272 | |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 273 | if (is_write) { |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 274 | err = copy_to_brd_setup(brd, sector, len); |
| 275 | if (err) |
| 276 | goto out; |
| 277 | } |
| 278 | |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 279 | mem = kmap_atomic(page); |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 280 | if (!is_write) { |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 281 | copy_from_brd(mem + off, brd, sector, len); |
| 282 | flush_dcache_page(page); |
Nick Piggin | c2572f2 | 2009-04-15 10:32:07 +0200 | [diff] [blame] | 283 | } else { |
| 284 | flush_dcache_page(page); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 285 | copy_to_brd(brd, mem + off, sector, len); |
Nick Piggin | c2572f2 | 2009-04-15 10:32:07 +0200 | [diff] [blame] | 286 | } |
Cong Wang | cfd8005 | 2011-11-25 23:14:18 +0800 | [diff] [blame] | 287 | kunmap_atomic(mem); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 288 | |
| 289 | out: |
| 290 | return err; |
| 291 | } |
| 292 | |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 293 | static blk_qc_t brd_make_request(struct request_queue *q, struct bio *bio) |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 294 | { |
| 295 | struct block_device *bdev = bio->bi_bdev; |
| 296 | struct brd_device *brd = bdev->bd_disk->private_data; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 297 | struct bio_vec bvec; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 298 | sector_t sector; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 299 | struct bvec_iter iter; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 300 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 301 | sector = bio->bi_iter.bi_sector; |
Kent Overstreet | f73a1c7 | 2012-09-25 15:05:12 -0700 | [diff] [blame] | 302 | if (bio_end_sector(bio) > get_capacity(bdev->bd_disk)) |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 303 | goto io_error; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 304 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 305 | bio_for_each_segment(bvec, bio, iter) { |
| 306 | unsigned int len = bvec.bv_len; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 307 | int err; |
| 308 | |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 309 | err = brd_do_bvec(brd, bvec.bv_page, len, bvec.bv_offset, |
| 310 | op_is_write(bio_op(bio)), sector); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 311 | if (err) |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 312 | goto io_error; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 313 | sector += len >> SECTOR_SHIFT; |
| 314 | } |
| 315 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 316 | bio_endio(bio); |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 317 | return BLK_QC_T_NONE; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 318 | io_error: |
| 319 | bio_io_error(bio); |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 320 | return BLK_QC_T_NONE; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 321 | } |
| 322 | |
Matthew Wilcox | a72132c | 2014-06-04 16:07:49 -0700 | [diff] [blame] | 323 | static int brd_rw_page(struct block_device *bdev, sector_t sector, |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 324 | struct page *page, bool is_write) |
Matthew Wilcox | a72132c | 2014-06-04 16:07:49 -0700 | [diff] [blame] | 325 | { |
| 326 | struct brd_device *brd = bdev->bd_disk->private_data; |
Jens Axboe | c11f0c0 | 2016-08-05 08:11:04 -0600 | [diff] [blame] | 327 | int err = brd_do_bvec(brd, page, PAGE_SIZE, 0, is_write, sector); |
| 328 | page_endio(page, is_write, err); |
Matthew Wilcox | a72132c | 2014-06-04 16:07:49 -0700 | [diff] [blame] | 329 | return err; |
| 330 | } |
| 331 | |
Matthew Wilcox | a7a97fc | 2015-02-16 15:59:41 -0800 | [diff] [blame] | 332 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 333 | static long __brd_direct_access(struct brd_device *brd, pgoff_t pgoff, |
| 334 | long nr_pages, void **kaddr, pfn_t *pfn) |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 335 | { |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 336 | struct page *page; |
| 337 | |
| 338 | if (!brd) |
| 339 | return -ENODEV; |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 340 | page = brd_insert_page(brd, PFN_PHYS(pgoff) / 512); |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 341 | if (!page) |
Matthew Wilcox | 96f8d8e | 2014-06-04 16:07:50 -0700 | [diff] [blame] | 342 | return -ENOSPC; |
Dan Williams | 7a9eb20 | 2016-06-03 18:06:47 -0700 | [diff] [blame] | 343 | *kaddr = page_address(page); |
Dan Williams | 34c0fd5 | 2016-01-15 16:56:14 -0800 | [diff] [blame] | 344 | *pfn = page_to_pfn_t(page); |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 345 | |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 346 | return 1; |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 347 | } |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 348 | |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 349 | static long brd_dax_direct_access(struct dax_device *dax_dev, |
| 350 | pgoff_t pgoff, long nr_pages, void **kaddr, pfn_t *pfn) |
| 351 | { |
| 352 | struct brd_device *brd = dax_get_private(dax_dev); |
| 353 | |
| 354 | return __brd_direct_access(brd, pgoff, nr_pages, kaddr, pfn); |
| 355 | } |
| 356 | |
| 357 | static const struct dax_operations brd_dax_ops = { |
| 358 | .direct_access = brd_dax_direct_access, |
| 359 | }; |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 360 | #endif |
| 361 | |
Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 362 | static const struct block_device_operations brd_fops = { |
Nick Piggin | 75acb9c | 2008-02-08 04:19:50 -0800 | [diff] [blame] | 363 | .owner = THIS_MODULE, |
Matthew Wilcox | a72132c | 2014-06-04 16:07:49 -0700 | [diff] [blame] | 364 | .rw_page = brd_rw_page, |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 365 | }; |
| 366 | |
| 367 | /* |
| 368 | * And now the modules code and kernel interface. |
| 369 | */ |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 370 | static int rd_nr = CONFIG_BLK_DEV_RAM_COUNT; |
Namhyung Kim | 8892cba | 2011-05-26 21:06:50 +0200 | [diff] [blame] | 371 | module_param(rd_nr, int, S_IRUGO); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 372 | MODULE_PARM_DESC(rd_nr, "Maximum number of brd devices"); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 373 | |
Jan Kara | 366f4ae | 2016-10-25 13:53:27 +0200 | [diff] [blame] | 374 | unsigned long rd_size = CONFIG_BLK_DEV_RAM_SIZE; |
| 375 | module_param(rd_size, ulong, S_IRUGO); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 376 | MODULE_PARM_DESC(rd_size, "Size of each RAM disk in kbytes."); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 377 | |
| 378 | static int max_part = 1; |
Namhyung Kim | 8892cba | 2011-05-26 21:06:50 +0200 | [diff] [blame] | 379 | module_param(max_part, int, S_IRUGO); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 380 | MODULE_PARM_DESC(max_part, "Num Minors to reserve between devices"); |
| 381 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 382 | MODULE_LICENSE("GPL"); |
| 383 | MODULE_ALIAS_BLOCKDEV_MAJOR(RAMDISK_MAJOR); |
Nick Piggin | efedf51 | 2008-06-04 17:18:42 +0200 | [diff] [blame] | 384 | MODULE_ALIAS("rd"); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 385 | |
| 386 | #ifndef MODULE |
| 387 | /* Legacy boot options - nonmodular */ |
| 388 | static int __init ramdisk_size(char *str) |
| 389 | { |
| 390 | rd_size = simple_strtol(str, NULL, 0); |
| 391 | return 1; |
| 392 | } |
Robert P. J. Day | 1adbee5 | 2009-06-10 12:57:08 -0700 | [diff] [blame] | 393 | __setup("ramdisk_size=", ramdisk_size); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 394 | #endif |
| 395 | |
| 396 | /* |
| 397 | * The device scheme is derived from loop.c. Keep them in synch where possible |
| 398 | * (should share code eventually). |
| 399 | */ |
| 400 | static LIST_HEAD(brd_devices); |
| 401 | static DEFINE_MUTEX(brd_devices_mutex); |
| 402 | |
| 403 | static struct brd_device *brd_alloc(int i) |
| 404 | { |
| 405 | struct brd_device *brd; |
| 406 | struct gendisk *disk; |
| 407 | |
| 408 | brd = kzalloc(sizeof(*brd), GFP_KERNEL); |
| 409 | if (!brd) |
| 410 | goto out; |
| 411 | brd->brd_number = i; |
| 412 | spin_lock_init(&brd->brd_lock); |
| 413 | INIT_RADIX_TREE(&brd->brd_pages, GFP_ATOMIC); |
| 414 | |
| 415 | brd->brd_queue = blk_alloc_queue(GFP_KERNEL); |
| 416 | if (!brd->brd_queue) |
| 417 | goto out_free_dev; |
Boaz Harrosh | c8fa317 | 2015-01-07 18:09:38 +0200 | [diff] [blame] | 418 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 419 | blk_queue_make_request(brd->brd_queue, brd_make_request); |
Martin K. Petersen | 086fa5f | 2010-02-26 00:20:38 -0500 | [diff] [blame] | 420 | blk_queue_max_hw_sectors(brd->brd_queue, 1024); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 421 | blk_queue_bounce_limit(brd->brd_queue, BLK_BOUNCE_ANY); |
| 422 | |
Boaz Harrosh | c8fa317 | 2015-01-07 18:09:38 +0200 | [diff] [blame] | 423 | /* This is so fdisk will align partitions on 4k, because of |
| 424 | * direct_access API needing 4k alignment, returning a PFN |
| 425 | * (This is only a problem on very small devices <= 4M, |
| 426 | * otherwise fdisk will align on 1M. Regardless this call |
| 427 | * is harmless) |
| 428 | */ |
| 429 | blk_queue_physical_block_size(brd->brd_queue, PAGE_SIZE); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 430 | disk = brd->brd_disk = alloc_disk(max_part); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 431 | if (!disk) |
| 432 | goto out_free_queue; |
| 433 | disk->major = RAMDISK_MAJOR; |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 434 | disk->first_minor = i * max_part; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 435 | disk->fops = &brd_fops; |
| 436 | disk->private_data = brd; |
| 437 | disk->queue = brd->brd_queue; |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 438 | disk->flags = GENHD_FL_EXT_DEVT; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 439 | sprintf(disk->disk_name, "ram%d", i); |
| 440 | set_capacity(disk, rd_size * 2); |
| 441 | |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 442 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
| 443 | queue_flag_set_unlocked(QUEUE_FLAG_DAX, brd->brd_queue); |
Gerald Schaefer | 1ef97fe | 2017-05-03 14:56:02 +0200 | [diff] [blame] | 444 | brd->dax_dev = alloc_dax(brd, disk->disk_name, &brd_dax_ops); |
| 445 | if (!brd->dax_dev) |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 446 | goto out_free_inode; |
| 447 | #endif |
| 448 | |
| 449 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 450 | return brd; |
| 451 | |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 452 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
| 453 | out_free_inode: |
Gerald Schaefer | 1ef97fe | 2017-05-03 14:56:02 +0200 | [diff] [blame] | 454 | kill_dax(brd->dax_dev); |
| 455 | put_dax(brd->dax_dev); |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 456 | #endif |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 457 | out_free_queue: |
| 458 | blk_cleanup_queue(brd->brd_queue); |
| 459 | out_free_dev: |
| 460 | kfree(brd); |
| 461 | out: |
| 462 | return NULL; |
| 463 | } |
| 464 | |
| 465 | static void brd_free(struct brd_device *brd) |
| 466 | { |
| 467 | put_disk(brd->brd_disk); |
| 468 | blk_cleanup_queue(brd->brd_queue); |
| 469 | brd_free_pages(brd); |
| 470 | kfree(brd); |
| 471 | } |
| 472 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 473 | static struct brd_device *brd_init_one(int i, bool *new) |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 474 | { |
| 475 | struct brd_device *brd; |
| 476 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 477 | *new = false; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 478 | list_for_each_entry(brd, &brd_devices, brd_list) { |
| 479 | if (brd->brd_number == i) |
| 480 | goto out; |
| 481 | } |
| 482 | |
| 483 | brd = brd_alloc(i); |
| 484 | if (brd) { |
| 485 | add_disk(brd->brd_disk); |
| 486 | list_add_tail(&brd->brd_list, &brd_devices); |
| 487 | } |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 488 | *new = true; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 489 | out: |
| 490 | return brd; |
| 491 | } |
| 492 | |
| 493 | static void brd_del_one(struct brd_device *brd) |
| 494 | { |
| 495 | list_del(&brd->brd_list); |
Dan Williams | 1647b9b | 2017-01-25 16:54:45 -0800 | [diff] [blame] | 496 | #ifdef CONFIG_BLK_DEV_RAM_DAX |
| 497 | kill_dax(brd->dax_dev); |
| 498 | put_dax(brd->dax_dev); |
| 499 | #endif |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 500 | del_gendisk(brd->brd_disk); |
| 501 | brd_free(brd); |
| 502 | } |
| 503 | |
| 504 | static struct kobject *brd_probe(dev_t dev, int *part, void *data) |
| 505 | { |
| 506 | struct brd_device *brd; |
| 507 | struct kobject *kobj; |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 508 | bool new; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 509 | |
| 510 | mutex_lock(&brd_devices_mutex); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 511 | brd = brd_init_one(MINOR(dev) / max_part, &new); |
Mikulas Patocka | a207f59 | 2013-10-14 12:13:24 -0400 | [diff] [blame] | 512 | kobj = brd ? get_disk(brd->brd_disk) : NULL; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 513 | mutex_unlock(&brd_devices_mutex); |
| 514 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 515 | if (new) |
| 516 | *part = 0; |
| 517 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 518 | return kobj; |
| 519 | } |
| 520 | |
| 521 | static int __init brd_init(void) |
| 522 | { |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 523 | struct brd_device *brd, *next; |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 524 | int i; |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 525 | |
| 526 | /* |
| 527 | * brd module now has a feature to instantiate underlying device |
| 528 | * structure on-demand, provided that there is an access dev node. |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 529 | * |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 530 | * (1) if rd_nr is specified, create that many upfront. else |
| 531 | * it defaults to CONFIG_BLK_DEV_RAM_COUNT |
| 532 | * (2) User can further extend brd devices by create dev node themselves |
| 533 | * and have kernel automatically instantiate actual device |
| 534 | * on-demand. Example: |
| 535 | * mknod /path/devnod_name b 1 X # 1 is the rd major |
| 536 | * fdisk -l /path/devnod_name |
| 537 | * If (X / max_part) was not already created it will be created |
| 538 | * dynamically. |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 539 | */ |
Laurent Vivier | d7853d1 | 2008-04-30 00:55:06 -0700 | [diff] [blame] | 540 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 541 | if (register_blkdev(RAMDISK_MAJOR, "ramdisk")) |
| 542 | return -EIO; |
| 543 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 544 | if (unlikely(!max_part)) |
| 545 | max_part = 1; |
| 546 | |
| 547 | for (i = 0; i < rd_nr; i++) { |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 548 | brd = brd_alloc(i); |
| 549 | if (!brd) |
| 550 | goto out_free; |
| 551 | list_add_tail(&brd->brd_list, &brd_devices); |
| 552 | } |
| 553 | |
| 554 | /* point of no return */ |
| 555 | |
| 556 | list_for_each_entry(brd, &brd_devices, brd_list) |
| 557 | add_disk(brd->brd_disk); |
| 558 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 559 | blk_register_region(MKDEV(RAMDISK_MAJOR, 0), 1UL << MINORBITS, |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 560 | THIS_MODULE, brd_probe, NULL, NULL); |
| 561 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 562 | pr_info("brd: module loaded\n"); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 563 | return 0; |
| 564 | |
| 565 | out_free: |
| 566 | list_for_each_entry_safe(brd, next, &brd_devices, brd_list) { |
| 567 | list_del(&brd->brd_list); |
| 568 | brd_free(brd); |
| 569 | } |
Akinobu Mita | c82f296 | 2008-08-20 14:09:09 -0700 | [diff] [blame] | 570 | unregister_blkdev(RAMDISK_MAJOR, "ramdisk"); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 571 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 572 | pr_info("brd: module NOT loaded !!!\n"); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 573 | return -ENOMEM; |
| 574 | } |
| 575 | |
| 576 | static void __exit brd_exit(void) |
| 577 | { |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 578 | struct brd_device *brd, *next; |
| 579 | |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 580 | list_for_each_entry_safe(brd, next, &brd_devices, brd_list) |
| 581 | brd_del_one(brd); |
| 582 | |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 583 | blk_unregister_region(MKDEV(RAMDISK_MAJOR, 0), 1UL << MINORBITS); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 584 | unregister_blkdev(RAMDISK_MAJOR, "ramdisk"); |
Boaz Harrosh | 937af5e | 2015-01-07 18:07:56 +0200 | [diff] [blame] | 585 | |
| 586 | pr_info("brd: module unloaded\n"); |
Nick Piggin | 9db5579 | 2008-02-08 04:19:49 -0800 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | module_init(brd_init); |
| 590 | module_exit(brd_exit); |
| 591 | |