blob: a4a80b742e65e99d602161002dd4296614e8593d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * block2mtd.c - create an mtd from a block device
3 *
4 * Copyright (C) 2001,2002 Simon Evans <spse@secret.org.uk>
Joern Engel2b54aae2008-02-06 01:38:02 -08005 * Copyright (C) 2004-2006 Joern Engel <joern@wh.fh-wedel.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Licence: GPL
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10#include <linux/fs.h>
11#include <linux/blkdev.h>
12#include <linux/bio.h>
13#include <linux/pagemap.h>
14#include <linux/list.h>
15#include <linux/init.h>
16#include <linux/mtd/mtd.h>
Ingo Molnar48b19262006-03-31 02:29:41 -080017#include <linux/mutex.h>
Ville Hervac4e7fb32006-07-14 00:31:16 +030018#include <linux/mount.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define ERROR(fmt, args...) printk(KERN_ERR "block2mtd: " fmt "\n" , ## args)
22#define INFO(fmt, args...) printk(KERN_INFO "block2mtd: " fmt "\n" , ## args)
23
24
25/* Info for the block device */
26struct block2mtd_dev {
27 struct list_head list;
28 struct block_device *blkdev;
29 struct mtd_info mtd;
Ingo Molnar48b19262006-03-31 02:29:41 -080030 struct mutex write_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33
34/* Static info about the MTD, used in cleanup_module */
35static LIST_HEAD(blkmtd_device_list);
36
37
Nick Piggin6fe69002007-05-06 14:49:04 -070038static struct page *page_read(struct address_space *mapping, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Nick Piggin6fe69002007-05-06 14:49:04 -070040 return read_mapping_page(mapping, index, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* erase a specified part of the device */
44static int _block2mtd_erase(struct block2mtd_dev *dev, loff_t to, size_t len)
45{
46 struct address_space *mapping = dev->blkdev->bd_inode->i_mapping;
47 struct page *page;
48 int index = to >> PAGE_SHIFT; // page index
49 int pages = len >> PAGE_SHIFT;
50 u_long *p;
51 u_long *max;
52
53 while (pages) {
Joern Engel21d31f12007-02-20 20:22:22 +010054 page = page_read(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 if (!page)
56 return -ENOMEM;
57 if (IS_ERR(page))
58 return PTR_ERR(page);
59
Joern Engel0ffb74c2007-02-20 20:20:58 +010060 max = page_address(page) + PAGE_SIZE;
61 for (p=page_address(page); p<max; p++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (*p != -1UL) {
63 lock_page(page);
64 memset(page_address(page), 0xff, PAGE_SIZE);
65 set_page_dirty(page);
66 unlock_page(page);
67 break;
68 }
69
70 page_cache_release(page);
71 pages--;
72 index++;
73 }
74 return 0;
75}
76static int block2mtd_erase(struct mtd_info *mtd, struct erase_info *instr)
77{
78 struct block2mtd_dev *dev = mtd->priv;
79 size_t from = instr->addr;
80 size_t len = instr->len;
81 int err;
82
83 instr->state = MTD_ERASING;
Ingo Molnar48b19262006-03-31 02:29:41 -080084 mutex_lock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 err = _block2mtd_erase(dev, from, len);
Ingo Molnar48b19262006-03-31 02:29:41 -080086 mutex_unlock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (err) {
88 ERROR("erase failed err = %d", err);
89 instr->state = MTD_ERASE_FAILED;
90 } else
91 instr->state = MTD_ERASE_DONE;
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 mtd_erase_callback(instr);
94 return err;
95}
96
97
98static int block2mtd_read(struct mtd_info *mtd, loff_t from, size_t len,
99 size_t *retlen, u_char *buf)
100{
101 struct block2mtd_dev *dev = mtd->priv;
102 struct page *page;
103 int index = from >> PAGE_SHIFT;
Joern Engel711c11b2005-03-07 20:29:09 +0000104 int offset = from & (PAGE_SIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int cpylen;
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 while (len) {
108 if ((offset + len) > PAGE_SIZE)
109 cpylen = PAGE_SIZE - offset; // multiple pages
110 else
111 cpylen = len; // this page
112 len = len - cpylen;
113
Joern Engel21d31f12007-02-20 20:22:22 +0100114 page = page_read(dev->blkdev->bd_inode->i_mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (!page)
116 return -ENOMEM;
117 if (IS_ERR(page))
118 return PTR_ERR(page);
119
120 memcpy(buf, page_address(page) + offset, cpylen);
121 page_cache_release(page);
122
123 if (retlen)
124 *retlen += cpylen;
125 buf += cpylen;
126 offset = 0;
127 index++;
128 }
129 return 0;
130}
131
132
133/* write data to the underlying device */
134static int _block2mtd_write(struct block2mtd_dev *dev, const u_char *buf,
135 loff_t to, size_t len, size_t *retlen)
136{
137 struct page *page;
138 struct address_space *mapping = dev->blkdev->bd_inode->i_mapping;
139 int index = to >> PAGE_SHIFT; // page index
140 int offset = to & ~PAGE_MASK; // page offset
141 int cpylen;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 while (len) {
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000144 if ((offset+len) > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 cpylen = PAGE_SIZE - offset; // multiple pages
146 else
147 cpylen = len; // this page
148 len = len - cpylen;
149
Joern Engel21d31f12007-02-20 20:22:22 +0100150 page = page_read(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (!page)
152 return -ENOMEM;
153 if (IS_ERR(page))
154 return PTR_ERR(page);
155
156 if (memcmp(page_address(page)+offset, buf, cpylen)) {
157 lock_page(page);
158 memcpy(page_address(page) + offset, buf, cpylen);
159 set_page_dirty(page);
160 unlock_page(page);
161 }
162 page_cache_release(page);
163
164 if (retlen)
165 *retlen += cpylen;
166
167 buf += cpylen;
168 offset = 0;
169 index++;
170 }
171 return 0;
172}
Ville Hervac4e7fb32006-07-14 00:31:16 +0300173
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static int block2mtd_write(struct mtd_info *mtd, loff_t to, size_t len,
176 size_t *retlen, const u_char *buf)
177{
178 struct block2mtd_dev *dev = mtd->priv;
179 int err;
180
Ingo Molnar48b19262006-03-31 02:29:41 -0800181 mutex_lock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 err = _block2mtd_write(dev, buf, to, len, retlen);
Ingo Molnar48b19262006-03-31 02:29:41 -0800183 mutex_unlock(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (err > 0)
185 err = 0;
186 return err;
187}
188
189
190/* sync the device - wait until the write queue is empty */
191static void block2mtd_sync(struct mtd_info *mtd)
192{
193 struct block2mtd_dev *dev = mtd->priv;
194 sync_blockdev(dev->blkdev);
195 return;
196}
197
198
199static void block2mtd_free_device(struct block2mtd_dev *dev)
200{
201 if (!dev)
202 return;
203
204 kfree(dev->mtd.name);
205
206 if (dev->blkdev) {
Andrew Mortonfc0ecff2007-02-10 01:45:39 -0800207 invalidate_mapping_pages(dev->blkdev->bd_inode->i_mapping,
208 0, -1);
Tejun Heoe525fd82010-11-13 11:55:17 +0100209 blkdev_put(dev->blkdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
212 kfree(dev);
213}
214
215
216/* FIXME: ensure that mtd->size % erase_size == 0 */
217static struct block2mtd_dev *add_device(char *devname, int erase_size)
218{
Tejun Heoe525fd82010-11-13 11:55:17 +0100219 const fmode_t mode = FMODE_READ | FMODE_WRITE | FMODE_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 struct block_device *bdev;
221 struct block2mtd_dev *dev;
Greg Kroah-Hartmaneadcf0d2008-07-02 12:46:22 -0700222 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 if (!devname)
225 return NULL;
226
Burman Yan95b93a02006-11-15 21:10:29 +0200227 dev = kzalloc(sizeof(struct block2mtd_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (!dev)
229 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /* Get a handle on the device */
Tejun Heod4d77622010-11-13 11:55:18 +0100232 bdev = blkdev_get_by_path(devname, mode, dev);
Ville Hervac4e7fb32006-07-14 00:31:16 +0300233#ifndef MODULE
234 if (IS_ERR(bdev)) {
235
236 /* We might not have rootfs mounted at this point. Try
237 to resolve the device name by other means. */
238
Joern Engel88705302007-02-20 20:21:41 +0100239 dev_t devt = name_to_dev_t(devname);
Tejun Heoe525fd82010-11-13 11:55:17 +0100240 if (devt)
Tejun Heod4d77622010-11-13 11:55:18 +0100241 bdev = blkdev_get_by_dev(devt, mode, dev);
Ville Hervac4e7fb32006-07-14 00:31:16 +0300242 }
243#endif
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (IS_ERR(bdev)) {
246 ERROR("error: cannot open device %s", devname);
247 goto devinit_err;
248 }
249 dev->blkdev = bdev;
250
251 if (MAJOR(bdev->bd_dev) == MTD_BLOCK_MAJOR) {
252 ERROR("attempting to use an MTD device as a block device");
253 goto devinit_err;
254 }
255
Ingo Molnar48b19262006-03-31 02:29:41 -0800256 mutex_init(&dev->write_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* Setup the MTD structure */
259 /* make the name contain the block device in */
Julia Lawall4d682422010-03-10 22:15:19 +0100260 name = kasprintf(GFP_KERNEL, "block2mtd: %s", devname);
Greg Kroah-Hartmaneadcf0d2008-07-02 12:46:22 -0700261 if (!name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 goto devinit_err;
263
Greg Kroah-Hartmaneadcf0d2008-07-02 12:46:22 -0700264 dev->mtd.name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK;
267 dev->mtd.erasesize = erase_size;
Artem B. Bityutskiy17ffc7b2006-06-22 18:15:48 +0400268 dev->mtd.writesize = 1;
Artem Bityutskiyb6043872012-02-03 09:32:44 +0200269 dev->mtd.writebufsize = PAGE_SIZE;
David Woodhouse21c8db92006-06-14 21:39:48 +0100270 dev->mtd.type = MTD_RAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 dev->mtd.flags = MTD_CAP_RAM;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200272 dev->mtd._erase = block2mtd_erase;
273 dev->mtd._write = block2mtd_write;
274 dev->mtd._writev = mtd_writev;
275 dev->mtd._sync = block2mtd_sync;
276 dev->mtd._read = block2mtd_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 dev->mtd.priv = dev;
278 dev->mtd.owner = THIS_MODULE;
279
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100280 if (mtd_device_register(&dev->mtd, NULL, 0)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300281 /* Device didn't get added, so free the entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 goto devinit_err;
283 }
284 list_add(&dev->list, &blkmtd_device_list);
285 INFO("mtd%d: [%s] erase_size = %dKiB [%d]", dev->mtd.index,
Stephane Chazelas0bc88c52008-04-18 13:44:15 -0700286 dev->mtd.name + strlen("block2mtd: "),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 dev->mtd.erasesize >> 10, dev->mtd.erasesize);
288 return dev;
289
290devinit_err:
291 block2mtd_free_device(dev);
292 return NULL;
293}
294
295
Joern Engel954c2422006-04-18 21:03:08 -0700296/* This function works similar to reguler strtoul. In addition, it
297 * allows some suffixes for a more human-readable number format:
298 * ki, Ki, kiB, KiB - multiply result with 1024
299 * Mi, MiB - multiply result with 1024^2
300 * Gi, GiB - multiply result with 1024^3
301 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static int ustrtoul(const char *cp, char **endp, unsigned int base)
303{
304 unsigned long result = simple_strtoul(cp, endp, base);
305 switch (**endp) {
306 case 'G' :
307 result *= 1024;
308 case 'M':
309 result *= 1024;
Joern Engel954c2422006-04-18 21:03:08 -0700310 case 'K':
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 case 'k':
312 result *= 1024;
313 /* By dwmw2 editorial decree, "ki", "Mi" or "Gi" are to be used. */
Joern Engel954c2422006-04-18 21:03:08 -0700314 if ((*endp)[1] == 'i') {
315 if ((*endp)[2] == 'B')
316 (*endp) += 3;
317 else
318 (*endp) += 2;
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321 return result;
322}
323
324
Thomas Gleixnercc712292005-03-19 22:40:47 +0000325static int parse_num(size_t *num, const char *token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 char *endp;
Thomas Gleixnercc712292005-03-19 22:40:47 +0000328 size_t n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Thomas Gleixnercc712292005-03-19 22:40:47 +0000330 n = (size_t) ustrtoul(token, &endp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (*endp)
332 return -EINVAL;
333
Thomas Gleixnercc712292005-03-19 22:40:47 +0000334 *num = n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336}
337
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static inline void kill_final_newline(char *str)
340{
341 char *newline = strrchr(str, '\n');
342 if (newline && !newline[1])
343 *newline = 0;
344}
345
346
Stephane Chazelas0bc88c52008-04-18 13:44:15 -0700347#define parse_err(fmt, args...) do { \
348 ERROR(fmt, ## args); \
349 return 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350} while (0)
351
Ville Hervac4e7fb32006-07-14 00:31:16 +0300352#ifndef MODULE
353static int block2mtd_init_called = 0;
Adrian Bunk4839f042007-05-02 12:33:17 +0100354static char block2mtd_paramline[80 + 12]; /* 80 for device, 12 for erase size */
Ville Hervac4e7fb32006-07-14 00:31:16 +0300355#endif
356
357
358static int block2mtd_setup2(const char *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Ville Hervac4e7fb32006-07-14 00:31:16 +0300360 char buf[80 + 12]; /* 80 for device, 12 for erase size */
Jesper Juhla6550e52006-05-14 01:42:25 +0200361 char *str = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 char *token[2];
363 char *name;
Thomas Gleixnercc712292005-03-19 22:40:47 +0000364 size_t erase_size = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int i, ret;
366
367 if (strnlen(val, sizeof(buf)) >= sizeof(buf))
368 parse_err("parameter too long");
369
370 strcpy(str, val);
371 kill_final_newline(str);
372
Jesper Juhla6550e52006-05-14 01:42:25 +0200373 for (i = 0; i < 2; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 token[i] = strsep(&str, ",");
375
376 if (str)
377 parse_err("too many arguments");
378
379 if (!token[0])
380 parse_err("no argument");
381
Ville Hervac4e7fb32006-07-14 00:31:16 +0300382 name = token[0];
383 if (strlen(name) + 1 > 80)
384 parse_err("device name too long");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 if (token[1]) {
Thomas Gleixnercc712292005-03-19 22:40:47 +0000387 ret = parse_num(&erase_size, token[1]);
Jesper Juhla6550e52006-05-14 01:42:25 +0200388 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 parse_err("illegal erase size");
Jesper Juhla6550e52006-05-14 01:42:25 +0200390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
393 add_device(name, erase_size);
394
395 return 0;
396}
397
398
Ville Hervac4e7fb32006-07-14 00:31:16 +0300399static int block2mtd_setup(const char *val, struct kernel_param *kp)
400{
401#ifdef MODULE
402 return block2mtd_setup2(val);
403#else
404 /* If more parameters are later passed in via
405 /sys/module/block2mtd/parameters/block2mtd
406 and block2mtd_init() has already been called,
407 we can parse the argument now. */
408
409 if (block2mtd_init_called)
410 return block2mtd_setup2(val);
411
412 /* During early boot stage, we only save the parameters
413 here. We must parse them later: if the param passed
414 from kernel boot command line, block2mtd_setup() is
415 called so early that it is not possible to resolve
416 the device (even kmalloc() fails). Deter that work to
417 block2mtd_setup2(). */
418
419 strlcpy(block2mtd_paramline, val, sizeof(block2mtd_paramline));
420
421 return 0;
422#endif
423}
424
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426module_param_call(block2mtd, block2mtd_setup, NULL, NULL, 0200);
427MODULE_PARM_DESC(block2mtd, "Device to use. \"block2mtd=<dev>[,<erasesize>]\"");
428
429static int __init block2mtd_init(void)
430{
Ville Hervac4e7fb32006-07-14 00:31:16 +0300431 int ret = 0;
Ville Hervac4e7fb32006-07-14 00:31:16 +0300432
433#ifndef MODULE
434 if (strlen(block2mtd_paramline))
435 ret = block2mtd_setup2(block2mtd_paramline);
436 block2mtd_init_called = 1;
437#endif
438
439 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442
443static void __devexit block2mtd_exit(void)
444{
445 struct list_head *pos, *next;
446
447 /* Remove the MTD devices */
448 list_for_each_safe(pos, next, &blkmtd_device_list) {
449 struct block2mtd_dev *dev = list_entry(pos, typeof(*dev), list);
450 block2mtd_sync(&dev->mtd);
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100451 mtd_device_unregister(&dev->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 INFO("mtd%d: [%s] removed", dev->mtd.index,
Stephane Chazelas0bc88c52008-04-18 13:44:15 -0700453 dev->mtd.name + strlen("block2mtd: "));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 list_del(&dev->list);
455 block2mtd_free_device(dev);
456 }
457}
458
459
460module_init(block2mtd_init);
461module_exit(block2mtd_exit);
462
463MODULE_LICENSE("GPL");
Joern Engel2b54aae2008-02-06 01:38:02 -0800464MODULE_AUTHOR("Joern Engel <joern@lazybastard.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465MODULE_DESCRIPTION("Emulate an MTD using a block device");