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