blob: 5d9ed06164138a6b0b27212d569b417ad62c5f9a [file] [log] [blame]
Nick Piggin9db55792008-02-08 04:19:49 -08001/*
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 Assche287f3ca2017-07-10 15:51:10 -070012#include <linux/initrd.h>
Nick Piggin9db55792008-02-08 04:19:49 -080013#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 Bergmann2a48fc02010-06-02 14:28:52 +020019#include <linux/mutex.h>
Nick Piggin9db55792008-02-08 04:19:49 -080020#include <linux/radix-tree.h>
Al Viroff01bb42011-09-16 02:31:11 -040021#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080023#ifdef CONFIG_BLK_DEV_RAM_DAX
24#include <linux/pfn_t.h>
Dan Williams1647b9b2017-01-25 16:54:45 -080025#include <linux/dax.h>
Dan Williams5d61e432017-06-27 13:06:22 -070026#include <linux/uio.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080027#endif
Nick Piggin9db55792008-02-08 04:19:49 -080028
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080029#include <linux/uaccess.h>
Nick Piggin9db55792008-02-08 04:19:49 -080030
31#define SECTOR_SHIFT 9
32#define PAGE_SECTORS_SHIFT (PAGE_SHIFT - SECTOR_SHIFT)
33#define PAGE_SECTORS (1 << PAGE_SECTORS_SHIFT)
34
35/*
36 * Each block ramdisk device has a radix_tree brd_pages of pages that stores
37 * the pages containing the block device's contents. A brd page's ->index is
38 * its offset in PAGE_SIZE units. This is similar to, but in no way connected
39 * with, the kernel's pagecache or buffer cache (which sit above our block
40 * device).
41 */
42struct brd_device {
43 int brd_number;
Nick Piggin9db55792008-02-08 04:19:49 -080044
45 struct request_queue *brd_queue;
46 struct gendisk *brd_disk;
Dan Williams1647b9b2017-01-25 16:54:45 -080047#ifdef CONFIG_BLK_DEV_RAM_DAX
48 struct dax_device *dax_dev;
49#endif
Nick Piggin9db55792008-02-08 04:19:49 -080050 struct list_head brd_list;
51
52 /*
53 * Backing store of pages and lock to protect it. This is the contents
54 * of the block device.
55 */
56 spinlock_t brd_lock;
57 struct radix_tree_root brd_pages;
58};
59
60/*
61 * Look up and return a brd's page for a given sector.
62 */
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020063static DEFINE_MUTEX(brd_mutex);
Nick Piggin9db55792008-02-08 04:19:49 -080064static struct page *brd_lookup_page(struct brd_device *brd, sector_t sector)
65{
66 pgoff_t idx;
67 struct page *page;
68
69 /*
70 * The page lifetime is protected by the fact that we have opened the
71 * device node -- brd pages will never be deleted under us, so we
72 * don't need any further locking or refcounting.
73 *
74 * This is strictly true for the radix-tree nodes as well (ie. we
75 * don't actually need the rcu_read_lock()), however that is not a
76 * documented feature of the radix-tree API so it is better to be
77 * safe here (we don't have total exclusion from radix tree updates
78 * here, only deletes).
79 */
80 rcu_read_lock();
81 idx = sector >> PAGE_SECTORS_SHIFT; /* sector to page index */
82 page = radix_tree_lookup(&brd->brd_pages, idx);
83 rcu_read_unlock();
84
85 BUG_ON(page && page->index != idx);
86
87 return page;
88}
89
90/*
91 * Look up and return a brd's page for a given sector.
92 * If one does not exist, allocate an empty page, and insert that. Then
93 * return it.
94 */
95static struct page *brd_insert_page(struct brd_device *brd, sector_t sector)
96{
97 pgoff_t idx;
98 struct page *page;
Nick Piggin75acb9c2008-02-08 04:19:50 -080099 gfp_t gfp_flags;
Nick Piggin9db55792008-02-08 04:19:49 -0800100
101 page = brd_lookup_page(brd, sector);
102 if (page)
103 return page;
104
105 /*
106 * Must use NOIO because we don't want to recurse back into the
107 * block or filesystem layers from page reclaim.
Nick Piggin75acb9c2008-02-08 04:19:50 -0800108 *
Matthew Wilcoxa7a97fc2015-02-16 15:59:41 -0800109 * Cannot support DAX and highmem, because our ->direct_access
110 * routine for DAX must return memory that is always addressable.
111 * If DAX was reworked to use pfns and kmap throughout, this
Nick Piggin75acb9c2008-02-08 04:19:50 -0800112 * restriction might be able to be lifted.
Nick Piggin9db55792008-02-08 04:19:49 -0800113 */
Nick Piggin75acb9c2008-02-08 04:19:50 -0800114 gfp_flags = GFP_NOIO | __GFP_ZERO;
Matthew Wilcoxa7a97fc2015-02-16 15:59:41 -0800115#ifndef CONFIG_BLK_DEV_RAM_DAX
Nick Piggin75acb9c2008-02-08 04:19:50 -0800116 gfp_flags |= __GFP_HIGHMEM;
117#endif
Petr Tesarik26defe32008-04-22 05:36:52 +0200118 page = alloc_page(gfp_flags);
Nick Piggin9db55792008-02-08 04:19:49 -0800119 if (!page)
120 return NULL;
121
122 if (radix_tree_preload(GFP_NOIO)) {
123 __free_page(page);
124 return NULL;
125 }
126
127 spin_lock(&brd->brd_lock);
128 idx = sector >> PAGE_SECTORS_SHIFT;
Brian Behlendorfdfd20b22013-05-24 15:55:28 -0700129 page->index = idx;
Nick Piggin9db55792008-02-08 04:19:49 -0800130 if (radix_tree_insert(&brd->brd_pages, idx, page)) {
131 __free_page(page);
132 page = radix_tree_lookup(&brd->brd_pages, idx);
133 BUG_ON(!page);
134 BUG_ON(page->index != idx);
Brian Behlendorfdfd20b22013-05-24 15:55:28 -0700135 }
Nick Piggin9db55792008-02-08 04:19:49 -0800136 spin_unlock(&brd->brd_lock);
137
138 radix_tree_preload_end();
139
140 return page;
141}
142
143/*
144 * Free all backing store pages and radix tree. This must only be called when
145 * there are no other users of the device.
146 */
147#define FREE_BATCH 16
148static void brd_free_pages(struct brd_device *brd)
149{
150 unsigned long pos = 0;
151 struct page *pages[FREE_BATCH];
152 int nr_pages;
153
154 do {
155 int i;
156
157 nr_pages = radix_tree_gang_lookup(&brd->brd_pages,
158 (void **)pages, pos, FREE_BATCH);
159
160 for (i = 0; i < nr_pages; i++) {
161 void *ret;
162
163 BUG_ON(pages[i]->index < pos);
164 pos = pages[i]->index;
165 ret = radix_tree_delete(&brd->brd_pages, pos);
166 BUG_ON(!ret || ret != pages[i]);
167 __free_page(pages[i]);
168 }
169
170 pos++;
171
172 /*
173 * This assumes radix_tree_gang_lookup always returns as
174 * many pages as possible. If the radix-tree code changes,
175 * so will this have to.
176 */
177 } while (nr_pages == FREE_BATCH);
178}
179
180/*
181 * copy_to_brd_setup must be called before copy_to_brd. It may sleep.
182 */
183static int copy_to_brd_setup(struct brd_device *brd, sector_t sector, size_t n)
184{
185 unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
186 size_t copy;
187
188 copy = min_t(size_t, n, PAGE_SIZE - offset);
189 if (!brd_insert_page(brd, sector))
Matthew Wilcox96f8d8e2014-06-04 16:07:50 -0700190 return -ENOSPC;
Nick Piggin9db55792008-02-08 04:19:49 -0800191 if (copy < n) {
192 sector += copy >> SECTOR_SHIFT;
193 if (!brd_insert_page(brd, sector))
Matthew Wilcox96f8d8e2014-06-04 16:07:50 -0700194 return -ENOSPC;
Nick Piggin9db55792008-02-08 04:19:49 -0800195 }
196 return 0;
197}
198
199/*
200 * Copy n bytes from src to the brd starting at sector. Does not sleep.
201 */
202static void copy_to_brd(struct brd_device *brd, const void *src,
203 sector_t sector, size_t n)
204{
205 struct page *page;
206 void *dst;
207 unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
208 size_t copy;
209
210 copy = min_t(size_t, n, PAGE_SIZE - offset);
211 page = brd_lookup_page(brd, sector);
212 BUG_ON(!page);
213
Cong Wangcfd80052011-11-25 23:14:18 +0800214 dst = kmap_atomic(page);
Nick Piggin9db55792008-02-08 04:19:49 -0800215 memcpy(dst + offset, src, copy);
Cong Wangcfd80052011-11-25 23:14:18 +0800216 kunmap_atomic(dst);
Nick Piggin9db55792008-02-08 04:19:49 -0800217
218 if (copy < n) {
219 src += copy;
220 sector += copy >> SECTOR_SHIFT;
221 copy = n - copy;
222 page = brd_lookup_page(brd, sector);
223 BUG_ON(!page);
224
Cong Wangcfd80052011-11-25 23:14:18 +0800225 dst = kmap_atomic(page);
Nick Piggin9db55792008-02-08 04:19:49 -0800226 memcpy(dst, src, copy);
Cong Wangcfd80052011-11-25 23:14:18 +0800227 kunmap_atomic(dst);
Nick Piggin9db55792008-02-08 04:19:49 -0800228 }
229}
230
231/*
232 * Copy n bytes to dst from the brd starting at sector. Does not sleep.
233 */
234static void copy_from_brd(void *dst, struct brd_device *brd,
235 sector_t sector, size_t n)
236{
237 struct page *page;
238 void *src;
239 unsigned int offset = (sector & (PAGE_SECTORS-1)) << SECTOR_SHIFT;
240 size_t copy;
241
242 copy = min_t(size_t, n, PAGE_SIZE - offset);
243 page = brd_lookup_page(brd, sector);
244 if (page) {
Cong Wangcfd80052011-11-25 23:14:18 +0800245 src = kmap_atomic(page);
Nick Piggin9db55792008-02-08 04:19:49 -0800246 memcpy(dst, src + offset, copy);
Cong Wangcfd80052011-11-25 23:14:18 +0800247 kunmap_atomic(src);
Nick Piggin9db55792008-02-08 04:19:49 -0800248 } else
249 memset(dst, 0, copy);
250
251 if (copy < n) {
252 dst += copy;
253 sector += copy >> SECTOR_SHIFT;
254 copy = n - copy;
255 page = brd_lookup_page(brd, sector);
256 if (page) {
Cong Wangcfd80052011-11-25 23:14:18 +0800257 src = kmap_atomic(page);
Nick Piggin9db55792008-02-08 04:19:49 -0800258 memcpy(dst, src, copy);
Cong Wangcfd80052011-11-25 23:14:18 +0800259 kunmap_atomic(src);
Nick Piggin9db55792008-02-08 04:19:49 -0800260 } else
261 memset(dst, 0, copy);
262 }
263}
264
265/*
266 * Process a single bvec of a bio.
267 */
268static int brd_do_bvec(struct brd_device *brd, struct page *page,
Jens Axboec11f0c02016-08-05 08:11:04 -0600269 unsigned int len, unsigned int off, bool is_write,
Nick Piggin9db55792008-02-08 04:19:49 -0800270 sector_t sector)
271{
272 void *mem;
273 int err = 0;
274
Jens Axboec11f0c02016-08-05 08:11:04 -0600275 if (is_write) {
Nick Piggin9db55792008-02-08 04:19:49 -0800276 err = copy_to_brd_setup(brd, sector, len);
277 if (err)
278 goto out;
279 }
280
Cong Wangcfd80052011-11-25 23:14:18 +0800281 mem = kmap_atomic(page);
Jens Axboec11f0c02016-08-05 08:11:04 -0600282 if (!is_write) {
Nick Piggin9db55792008-02-08 04:19:49 -0800283 copy_from_brd(mem + off, brd, sector, len);
284 flush_dcache_page(page);
Nick Pigginc2572f22009-04-15 10:32:07 +0200285 } else {
286 flush_dcache_page(page);
Nick Piggin9db55792008-02-08 04:19:49 -0800287 copy_to_brd(brd, mem + off, sector, len);
Nick Pigginc2572f22009-04-15 10:32:07 +0200288 }
Cong Wangcfd80052011-11-25 23:14:18 +0800289 kunmap_atomic(mem);
Nick Piggin9db55792008-02-08 04:19:49 -0800290
291out:
292 return err;
293}
294
Jens Axboedece1632015-11-05 10:41:16 -0700295static blk_qc_t brd_make_request(struct request_queue *q, struct bio *bio)
Nick Piggin9db55792008-02-08 04:19:49 -0800296{
297 struct block_device *bdev = bio->bi_bdev;
298 struct brd_device *brd = bdev->bd_disk->private_data;
Kent Overstreet79886132013-11-23 17:19:00 -0800299 struct bio_vec bvec;
Nick Piggin9db55792008-02-08 04:19:49 -0800300 sector_t sector;
Kent Overstreet79886132013-11-23 17:19:00 -0800301 struct bvec_iter iter;
Nick Piggin9db55792008-02-08 04:19:49 -0800302
Kent Overstreet4f024f32013-10-11 15:44:27 -0700303 sector = bio->bi_iter.bi_sector;
Kent Overstreetf73a1c72012-09-25 15:05:12 -0700304 if (bio_end_sector(bio) > get_capacity(bdev->bd_disk))
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200305 goto io_error;
Nick Piggin9db55792008-02-08 04:19:49 -0800306
Kent Overstreet79886132013-11-23 17:19:00 -0800307 bio_for_each_segment(bvec, bio, iter) {
308 unsigned int len = bvec.bv_len;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200309 int err;
310
Jens Axboec11f0c02016-08-05 08:11:04 -0600311 err = brd_do_bvec(brd, bvec.bv_page, len, bvec.bv_offset,
312 op_is_write(bio_op(bio)), sector);
Nick Piggin9db55792008-02-08 04:19:49 -0800313 if (err)
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200314 goto io_error;
Nick Piggin9db55792008-02-08 04:19:49 -0800315 sector += len >> SECTOR_SHIFT;
316 }
317
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200318 bio_endio(bio);
Jens Axboedece1632015-11-05 10:41:16 -0700319 return BLK_QC_T_NONE;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200320io_error:
321 bio_io_error(bio);
Jens Axboedece1632015-11-05 10:41:16 -0700322 return BLK_QC_T_NONE;
Nick Piggin9db55792008-02-08 04:19:49 -0800323}
324
Matthew Wilcoxa72132c2014-06-04 16:07:49 -0700325static int brd_rw_page(struct block_device *bdev, sector_t sector,
Jens Axboec11f0c02016-08-05 08:11:04 -0600326 struct page *page, bool is_write)
Matthew Wilcoxa72132c2014-06-04 16:07:49 -0700327{
328 struct brd_device *brd = bdev->bd_disk->private_data;
Huang Ying98cc0932017-09-06 16:22:27 -0700329 int err;
330
331 if (PageTransHuge(page))
332 return -ENOTSUPP;
333 err = brd_do_bvec(brd, page, PAGE_SIZE, 0, is_write, sector);
Jens Axboec11f0c02016-08-05 08:11:04 -0600334 page_endio(page, is_write, err);
Matthew Wilcoxa72132c2014-06-04 16:07:49 -0700335 return err;
336}
337
Matthew Wilcoxa7a97fc2015-02-16 15:59:41 -0800338#ifdef CONFIG_BLK_DEV_RAM_DAX
Dan Williams1647b9b2017-01-25 16:54:45 -0800339static long __brd_direct_access(struct brd_device *brd, pgoff_t pgoff,
340 long nr_pages, void **kaddr, pfn_t *pfn)
Nick Piggin75acb9c2008-02-08 04:19:50 -0800341{
Nick Piggin75acb9c2008-02-08 04:19:50 -0800342 struct page *page;
343
344 if (!brd)
345 return -ENODEV;
Dan Williams1647b9b2017-01-25 16:54:45 -0800346 page = brd_insert_page(brd, PFN_PHYS(pgoff) / 512);
Nick Piggin75acb9c2008-02-08 04:19:50 -0800347 if (!page)
Matthew Wilcox96f8d8e2014-06-04 16:07:50 -0700348 return -ENOSPC;
Dan Williams7a9eb202016-06-03 18:06:47 -0700349 *kaddr = page_address(page);
Dan Williams34c0fd52016-01-15 16:56:14 -0800350 *pfn = page_to_pfn_t(page);
Nick Piggin75acb9c2008-02-08 04:19:50 -0800351
Dan Williams1647b9b2017-01-25 16:54:45 -0800352 return 1;
Nick Piggin75acb9c2008-02-08 04:19:50 -0800353}
Dan Williams1647b9b2017-01-25 16:54:45 -0800354
Dan Williams1647b9b2017-01-25 16:54:45 -0800355static long brd_dax_direct_access(struct dax_device *dax_dev,
356 pgoff_t pgoff, long nr_pages, void **kaddr, pfn_t *pfn)
357{
358 struct brd_device *brd = dax_get_private(dax_dev);
359
360 return __brd_direct_access(brd, pgoff, nr_pages, kaddr, pfn);
361}
362
Dan Williams5d61e432017-06-27 13:06:22 -0700363static size_t brd_dax_copy_from_iter(struct dax_device *dax_dev, pgoff_t pgoff,
364 void *addr, size_t bytes, struct iov_iter *i)
365{
366 return copy_from_iter(addr, bytes, i);
367}
368
Dan Williams1647b9b2017-01-25 16:54:45 -0800369static const struct dax_operations brd_dax_ops = {
370 .direct_access = brd_dax_direct_access,
Dan Williams5d61e432017-06-27 13:06:22 -0700371 .copy_from_iter = brd_dax_copy_from_iter,
Dan Williams1647b9b2017-01-25 16:54:45 -0800372};
Nick Piggin75acb9c2008-02-08 04:19:50 -0800373#endif
374
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700375static const struct block_device_operations brd_fops = {
Nick Piggin75acb9c2008-02-08 04:19:50 -0800376 .owner = THIS_MODULE,
Matthew Wilcoxa72132c2014-06-04 16:07:49 -0700377 .rw_page = brd_rw_page,
Nick Piggin9db55792008-02-08 04:19:49 -0800378};
379
380/*
381 * And now the modules code and kernel interface.
382 */
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200383static int rd_nr = CONFIG_BLK_DEV_RAM_COUNT;
Namhyung Kim8892cba2011-05-26 21:06:50 +0200384module_param(rd_nr, int, S_IRUGO);
Nick Piggin9db55792008-02-08 04:19:49 -0800385MODULE_PARM_DESC(rd_nr, "Maximum number of brd devices");
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200386
Jan Kara366f4ae2016-10-25 13:53:27 +0200387unsigned long rd_size = CONFIG_BLK_DEV_RAM_SIZE;
388module_param(rd_size, ulong, S_IRUGO);
Nick Piggin9db55792008-02-08 04:19:49 -0800389MODULE_PARM_DESC(rd_size, "Size of each RAM disk in kbytes.");
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200390
391static int max_part = 1;
Namhyung Kim8892cba2011-05-26 21:06:50 +0200392module_param(max_part, int, S_IRUGO);
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200393MODULE_PARM_DESC(max_part, "Num Minors to reserve between devices");
394
Nick Piggin9db55792008-02-08 04:19:49 -0800395MODULE_LICENSE("GPL");
396MODULE_ALIAS_BLOCKDEV_MAJOR(RAMDISK_MAJOR);
Nick Pigginefedf512008-06-04 17:18:42 +0200397MODULE_ALIAS("rd");
Nick Piggin9db55792008-02-08 04:19:49 -0800398
399#ifndef MODULE
400/* Legacy boot options - nonmodular */
401static int __init ramdisk_size(char *str)
402{
403 rd_size = simple_strtol(str, NULL, 0);
404 return 1;
405}
Robert P. J. Day1adbee52009-06-10 12:57:08 -0700406__setup("ramdisk_size=", ramdisk_size);
Nick Piggin9db55792008-02-08 04:19:49 -0800407#endif
408
409/*
410 * The device scheme is derived from loop.c. Keep them in synch where possible
411 * (should share code eventually).
412 */
413static LIST_HEAD(brd_devices);
414static DEFINE_MUTEX(brd_devices_mutex);
415
416static struct brd_device *brd_alloc(int i)
417{
418 struct brd_device *brd;
419 struct gendisk *disk;
420
421 brd = kzalloc(sizeof(*brd), GFP_KERNEL);
422 if (!brd)
423 goto out;
424 brd->brd_number = i;
425 spin_lock_init(&brd->brd_lock);
426 INIT_RADIX_TREE(&brd->brd_pages, GFP_ATOMIC);
427
428 brd->brd_queue = blk_alloc_queue(GFP_KERNEL);
429 if (!brd->brd_queue)
430 goto out_free_dev;
Boaz Harroshc8fa3172015-01-07 18:09:38 +0200431
Nick Piggin9db55792008-02-08 04:19:49 -0800432 blk_queue_make_request(brd->brd_queue, brd_make_request);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500433 blk_queue_max_hw_sectors(brd->brd_queue, 1024);
Nick Piggin9db55792008-02-08 04:19:49 -0800434
Boaz Harroshc8fa3172015-01-07 18:09:38 +0200435 /* This is so fdisk will align partitions on 4k, because of
436 * direct_access API needing 4k alignment, returning a PFN
437 * (This is only a problem on very small devices <= 4M,
438 * otherwise fdisk will align on 1M. Regardless this call
439 * is harmless)
440 */
441 blk_queue_physical_block_size(brd->brd_queue, PAGE_SIZE);
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200442 disk = brd->brd_disk = alloc_disk(max_part);
Nick Piggin9db55792008-02-08 04:19:49 -0800443 if (!disk)
444 goto out_free_queue;
445 disk->major = RAMDISK_MAJOR;
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200446 disk->first_minor = i * max_part;
Nick Piggin9db55792008-02-08 04:19:49 -0800447 disk->fops = &brd_fops;
448 disk->private_data = brd;
449 disk->queue = brd->brd_queue;
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200450 disk->flags = GENHD_FL_EXT_DEVT;
Nick Piggin9db55792008-02-08 04:19:49 -0800451 sprintf(disk->disk_name, "ram%d", i);
452 set_capacity(disk, rd_size * 2);
453
Dan Williams1647b9b2017-01-25 16:54:45 -0800454#ifdef CONFIG_BLK_DEV_RAM_DAX
455 queue_flag_set_unlocked(QUEUE_FLAG_DAX, brd->brd_queue);
Gerald Schaefer1ef97fe2017-05-03 14:56:02 +0200456 brd->dax_dev = alloc_dax(brd, disk->disk_name, &brd_dax_ops);
457 if (!brd->dax_dev)
Dan Williams1647b9b2017-01-25 16:54:45 -0800458 goto out_free_inode;
459#endif
460
461
Nick Piggin9db55792008-02-08 04:19:49 -0800462 return brd;
463
Dan Williams1647b9b2017-01-25 16:54:45 -0800464#ifdef CONFIG_BLK_DEV_RAM_DAX
465out_free_inode:
Gerald Schaefer1ef97fe2017-05-03 14:56:02 +0200466 kill_dax(brd->dax_dev);
467 put_dax(brd->dax_dev);
Dan Williams1647b9b2017-01-25 16:54:45 -0800468#endif
Nick Piggin9db55792008-02-08 04:19:49 -0800469out_free_queue:
470 blk_cleanup_queue(brd->brd_queue);
471out_free_dev:
472 kfree(brd);
473out:
474 return NULL;
475}
476
477static void brd_free(struct brd_device *brd)
478{
479 put_disk(brd->brd_disk);
480 blk_cleanup_queue(brd->brd_queue);
481 brd_free_pages(brd);
482 kfree(brd);
483}
484
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200485static struct brd_device *brd_init_one(int i, bool *new)
Nick Piggin9db55792008-02-08 04:19:49 -0800486{
487 struct brd_device *brd;
488
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200489 *new = false;
Nick Piggin9db55792008-02-08 04:19:49 -0800490 list_for_each_entry(brd, &brd_devices, brd_list) {
491 if (brd->brd_number == i)
492 goto out;
493 }
494
495 brd = brd_alloc(i);
496 if (brd) {
497 add_disk(brd->brd_disk);
498 list_add_tail(&brd->brd_list, &brd_devices);
499 }
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200500 *new = true;
Nick Piggin9db55792008-02-08 04:19:49 -0800501out:
502 return brd;
503}
504
505static void brd_del_one(struct brd_device *brd)
506{
507 list_del(&brd->brd_list);
Dan Williams1647b9b2017-01-25 16:54:45 -0800508#ifdef CONFIG_BLK_DEV_RAM_DAX
509 kill_dax(brd->dax_dev);
510 put_dax(brd->dax_dev);
511#endif
Nick Piggin9db55792008-02-08 04:19:49 -0800512 del_gendisk(brd->brd_disk);
513 brd_free(brd);
514}
515
516static struct kobject *brd_probe(dev_t dev, int *part, void *data)
517{
518 struct brd_device *brd;
519 struct kobject *kobj;
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200520 bool new;
Nick Piggin9db55792008-02-08 04:19:49 -0800521
522 mutex_lock(&brd_devices_mutex);
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200523 brd = brd_init_one(MINOR(dev) / max_part, &new);
Mikulas Patockaa207f592013-10-14 12:13:24 -0400524 kobj = brd ? get_disk(brd->brd_disk) : NULL;
Nick Piggin9db55792008-02-08 04:19:49 -0800525 mutex_unlock(&brd_devices_mutex);
526
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200527 if (new)
528 *part = 0;
529
Nick Piggin9db55792008-02-08 04:19:49 -0800530 return kobj;
531}
532
533static int __init brd_init(void)
534{
Nick Piggin9db55792008-02-08 04:19:49 -0800535 struct brd_device *brd, *next;
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200536 int i;
Nick Piggin9db55792008-02-08 04:19:49 -0800537
538 /*
539 * brd module now has a feature to instantiate underlying device
540 * structure on-demand, provided that there is an access dev node.
Nick Piggin9db55792008-02-08 04:19:49 -0800541 *
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200542 * (1) if rd_nr is specified, create that many upfront. else
543 * it defaults to CONFIG_BLK_DEV_RAM_COUNT
544 * (2) User can further extend brd devices by create dev node themselves
545 * and have kernel automatically instantiate actual device
546 * on-demand. Example:
547 * mknod /path/devnod_name b 1 X # 1 is the rd major
548 * fdisk -l /path/devnod_name
549 * If (X / max_part) was not already created it will be created
550 * dynamically.
Nick Piggin9db55792008-02-08 04:19:49 -0800551 */
Laurent Vivierd7853d12008-04-30 00:55:06 -0700552
Nick Piggin9db55792008-02-08 04:19:49 -0800553 if (register_blkdev(RAMDISK_MAJOR, "ramdisk"))
554 return -EIO;
555
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200556 if (unlikely(!max_part))
557 max_part = 1;
558
559 for (i = 0; i < rd_nr; i++) {
Nick Piggin9db55792008-02-08 04:19:49 -0800560 brd = brd_alloc(i);
561 if (!brd)
562 goto out_free;
563 list_add_tail(&brd->brd_list, &brd_devices);
564 }
565
566 /* point of no return */
567
568 list_for_each_entry(brd, &brd_devices, brd_list)
569 add_disk(brd->brd_disk);
570
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200571 blk_register_region(MKDEV(RAMDISK_MAJOR, 0), 1UL << MINORBITS,
Nick Piggin9db55792008-02-08 04:19:49 -0800572 THIS_MODULE, brd_probe, NULL, NULL);
573
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200574 pr_info("brd: module loaded\n");
Nick Piggin9db55792008-02-08 04:19:49 -0800575 return 0;
576
577out_free:
578 list_for_each_entry_safe(brd, next, &brd_devices, brd_list) {
579 list_del(&brd->brd_list);
580 brd_free(brd);
581 }
Akinobu Mitac82f2962008-08-20 14:09:09 -0700582 unregister_blkdev(RAMDISK_MAJOR, "ramdisk");
Nick Piggin9db55792008-02-08 04:19:49 -0800583
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200584 pr_info("brd: module NOT loaded !!!\n");
Nick Piggin9db55792008-02-08 04:19:49 -0800585 return -ENOMEM;
586}
587
588static void __exit brd_exit(void)
589{
Nick Piggin9db55792008-02-08 04:19:49 -0800590 struct brd_device *brd, *next;
591
Nick Piggin9db55792008-02-08 04:19:49 -0800592 list_for_each_entry_safe(brd, next, &brd_devices, brd_list)
593 brd_del_one(brd);
594
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200595 blk_unregister_region(MKDEV(RAMDISK_MAJOR, 0), 1UL << MINORBITS);
Nick Piggin9db55792008-02-08 04:19:49 -0800596 unregister_blkdev(RAMDISK_MAJOR, "ramdisk");
Boaz Harrosh937af5e2015-01-07 18:07:56 +0200597
598 pr_info("brd: module unloaded\n");
Nick Piggin9db55792008-02-08 04:19:49 -0800599}
600
601module_init(brd_init);
602module_exit(brd_exit);
603