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