123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/err.h>
- #include <linux/kernel.h>
- #include <linux/list.h>
- #include <linux/mutex.h>
- #include <linux/slab.h>
- #include <linux/mtd/ubi.h>
- #include <linux/workqueue.h>
- #include <linux/blkdev.h>
- #include <linux/blk-mq.h>
- #include <linux/hdreg.h>
- #include <linux/scatterlist.h>
- #include <linux/idr.h>
- #include <asm/div64.h>
- #include "ubi-media.h"
- #include "ubi.h"
- #define UBIBLOCK_MAX_DEVICES 32
- #define UBIBLOCK_PARAM_LEN 63
- #define UBIBLOCK_PARAM_COUNT 2
- struct ubiblock_param {
- int ubi_num;
- int vol_id;
- char name[UBIBLOCK_PARAM_LEN+1];
- };
- struct ubiblock_pdu {
- struct work_struct work;
- struct ubi_sgl usgl;
- };
- static int ubiblock_devs __initdata;
- static struct ubiblock_param ubiblock_param[UBIBLOCK_MAX_DEVICES] __initdata;
- struct ubiblock {
- struct ubi_volume_desc *desc;
- int ubi_num;
- int vol_id;
- int refcnt;
- int leb_size;
- struct gendisk *gd;
- struct request_queue *rq;
- struct workqueue_struct *wq;
- struct mutex dev_mutex;
- struct list_head list;
- struct blk_mq_tag_set tag_set;
- };
- static LIST_HEAD(ubiblock_devices);
- static DEFINE_IDR(ubiblock_minor_idr);
- static DEFINE_MUTEX(devices_mutex);
- static int ubiblock_major;
- static int __init ubiblock_set_param(const char *val,
- const struct kernel_param *kp)
- {
- int i, ret;
- size_t len;
- struct ubiblock_param *param;
- char buf[UBIBLOCK_PARAM_LEN];
- char *pbuf = &buf[0];
- char *tokens[UBIBLOCK_PARAM_COUNT];
- if (!val)
- return -EINVAL;
- len = strnlen(val, UBIBLOCK_PARAM_LEN);
- if (len == 0) {
- pr_warn("UBI: block: empty 'block=' parameter - ignored\n");
- return 0;
- }
- if (len == UBIBLOCK_PARAM_LEN) {
- pr_err("UBI: block: parameter \"%s\" is too long, max. is %d\n",
- val, UBIBLOCK_PARAM_LEN);
- return -EINVAL;
- }
- strcpy(buf, val);
-
- if (buf[len - 1] == '\n')
- buf[len - 1] = '\0';
- for (i = 0; i < UBIBLOCK_PARAM_COUNT; i++)
- tokens[i] = strsep(&pbuf, ",");
- param = &ubiblock_param[ubiblock_devs];
- if (tokens[1]) {
-
- ret = kstrtoint(tokens[0], 10, ¶m->ubi_num);
- if (ret < 0)
- return -EINVAL;
-
- ret = kstrtoint(tokens[1], 10, ¶m->vol_id);
- if (ret < 0) {
- param->vol_id = -1;
- strcpy(param->name, tokens[1]);
- }
- } else {
-
- strcpy(param->name, tokens[0]);
- param->ubi_num = -1;
- param->vol_id = -1;
- }
- ubiblock_devs++;
- return 0;
- }
- static const struct kernel_param_ops ubiblock_param_ops = {
- .set = ubiblock_set_param,
- };
- module_param_cb(block, &ubiblock_param_ops, NULL, 0);
- MODULE_PARM_DESC(block, "Attach block devices to UBI volumes. Parameter format: block=<path|dev,num|dev,name>.\n"
- "Multiple \"block\" parameters may be specified.\n"
- "UBI volumes may be specified by their number, name, or path to the device node.\n"
- "Examples\n"
- "Using the UBI volume path:\n"
- "ubi.block=/dev/ubi0_0\n"
- "Using the UBI device, and the volume name:\n"
- "ubi.block=0,rootfs\n"
- "Using both UBI device number and UBI volume number:\n"
- "ubi.block=0,0\n");
- static struct ubiblock *find_dev_nolock(int ubi_num, int vol_id)
- {
- struct ubiblock *dev;
- list_for_each_entry(dev, &ubiblock_devices, list)
- if (dev->ubi_num == ubi_num && dev->vol_id == vol_id)
- return dev;
- return NULL;
- }
- static int ubiblock_read(struct ubiblock_pdu *pdu)
- {
- int ret, leb, offset, bytes_left, to_read;
- u64 pos;
- struct request *req = blk_mq_rq_from_pdu(pdu);
- struct ubiblock *dev = req->q->queuedata;
- to_read = blk_rq_bytes(req);
- pos = blk_rq_pos(req) << 9;
-
- offset = do_div(pos, dev->leb_size);
- leb = pos;
- bytes_left = to_read;
- while (bytes_left) {
-
- if (offset + to_read > dev->leb_size)
- to_read = dev->leb_size - offset;
- ret = ubi_read_sg(dev->desc, leb, &pdu->usgl, offset, to_read);
- if (ret < 0)
- return ret;
- bytes_left -= to_read;
- to_read = bytes_left;
- leb += 1;
- offset = 0;
- }
- return 0;
- }
- static int ubiblock_open(struct block_device *bdev, fmode_t mode)
- {
- struct ubiblock *dev = bdev->bd_disk->private_data;
- int ret;
- mutex_lock(&dev->dev_mutex);
- if (dev->refcnt > 0) {
-
- goto out_done;
- }
-
- if (mode & FMODE_WRITE) {
- ret = -EROFS;
- goto out_unlock;
- }
- dev->desc = ubi_open_volume(dev->ubi_num, dev->vol_id, UBI_READONLY);
- if (IS_ERR(dev->desc)) {
- dev_err(disk_to_dev(dev->gd), "failed to open ubi volume %d_%d",
- dev->ubi_num, dev->vol_id);
- ret = PTR_ERR(dev->desc);
- dev->desc = NULL;
- goto out_unlock;
- }
- out_done:
- dev->refcnt++;
- mutex_unlock(&dev->dev_mutex);
- return 0;
- out_unlock:
- mutex_unlock(&dev->dev_mutex);
- return ret;
- }
- static void ubiblock_release(struct gendisk *gd, fmode_t mode)
- {
- struct ubiblock *dev = gd->private_data;
- mutex_lock(&dev->dev_mutex);
- dev->refcnt--;
- if (dev->refcnt == 0) {
- ubi_close_volume(dev->desc);
- dev->desc = NULL;
- }
- mutex_unlock(&dev->dev_mutex);
- }
- static int ubiblock_getgeo(struct block_device *bdev, struct hd_geometry *geo)
- {
-
- geo->heads = 1;
- geo->cylinders = 1;
- geo->sectors = get_capacity(bdev->bd_disk);
- geo->start = 0;
- return 0;
- }
- static const struct block_device_operations ubiblock_ops = {
- .owner = THIS_MODULE,
- .open = ubiblock_open,
- .release = ubiblock_release,
- .getgeo = ubiblock_getgeo,
- };
- static void ubiblock_do_work(struct work_struct *work)
- {
- int ret;
- struct ubiblock_pdu *pdu = container_of(work, struct ubiblock_pdu, work);
- struct request *req = blk_mq_rq_from_pdu(pdu);
- blk_mq_start_request(req);
-
- blk_rq_map_sg(req->q, req, pdu->usgl.sg);
- ret = ubiblock_read(pdu);
- rq_flush_dcache_pages(req);
- blk_mq_end_request(req, errno_to_blk_status(ret));
- }
- static blk_status_t ubiblock_queue_rq(struct blk_mq_hw_ctx *hctx,
- const struct blk_mq_queue_data *bd)
- {
- struct request *req = bd->rq;
- struct ubiblock *dev = hctx->queue->queuedata;
- struct ubiblock_pdu *pdu = blk_mq_rq_to_pdu(req);
- switch (req_op(req)) {
- case REQ_OP_READ:
- ubi_sgl_init(&pdu->usgl);
- queue_work(dev->wq, &pdu->work);
- return BLK_STS_OK;
- default:
- return BLK_STS_IOERR;
- }
- }
- static int ubiblock_init_request(struct blk_mq_tag_set *set,
- struct request *req, unsigned int hctx_idx,
- unsigned int numa_node)
- {
- struct ubiblock_pdu *pdu = blk_mq_rq_to_pdu(req);
- sg_init_table(pdu->usgl.sg, UBI_MAX_SG_COUNT);
- INIT_WORK(&pdu->work, ubiblock_do_work);
- return 0;
- }
- static const struct blk_mq_ops ubiblock_mq_ops = {
- .queue_rq = ubiblock_queue_rq,
- .init_request = ubiblock_init_request,
- };
- int ubiblock_create(struct ubi_volume_info *vi)
- {
- struct ubiblock *dev;
- struct gendisk *gd;
- u64 disk_capacity = vi->used_bytes >> 9;
- int ret;
- if ((sector_t)disk_capacity != disk_capacity)
- return -EFBIG;
-
- mutex_lock(&devices_mutex);
- if (find_dev_nolock(vi->ubi_num, vi->vol_id)) {
- ret = -EEXIST;
- goto out_unlock;
- }
- dev = kzalloc(sizeof(struct ubiblock), GFP_KERNEL);
- if (!dev) {
- ret = -ENOMEM;
- goto out_unlock;
- }
- mutex_init(&dev->dev_mutex);
- dev->ubi_num = vi->ubi_num;
- dev->vol_id = vi->vol_id;
- dev->leb_size = vi->usable_leb_size;
-
- gd = alloc_disk(1);
- if (!gd) {
- pr_err("UBI: block: alloc_disk failed\n");
- ret = -ENODEV;
- goto out_free_dev;
- }
- gd->fops = &ubiblock_ops;
- gd->major = ubiblock_major;
- gd->first_minor = idr_alloc(&ubiblock_minor_idr, dev, 0, 0, GFP_KERNEL);
- if (gd->first_minor < 0) {
- dev_err(disk_to_dev(gd),
- "block: dynamic minor allocation failed");
- ret = -ENODEV;
- goto out_put_disk;
- }
- gd->private_data = dev;
- sprintf(gd->disk_name, "ubiblock%d_%d", dev->ubi_num, dev->vol_id);
- set_capacity(gd, disk_capacity);
- dev->gd = gd;
- dev->tag_set.ops = &ubiblock_mq_ops;
- dev->tag_set.queue_depth = 64;
- dev->tag_set.numa_node = NUMA_NO_NODE;
- dev->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
- dev->tag_set.cmd_size = sizeof(struct ubiblock_pdu);
- dev->tag_set.driver_data = dev;
- dev->tag_set.nr_hw_queues = 1;
- ret = blk_mq_alloc_tag_set(&dev->tag_set);
- if (ret) {
- dev_err(disk_to_dev(dev->gd), "blk_mq_alloc_tag_set failed");
- goto out_remove_minor;
- }
- dev->rq = blk_mq_init_queue(&dev->tag_set);
- if (IS_ERR(dev->rq)) {
- dev_err(disk_to_dev(gd), "blk_mq_init_queue failed");
- ret = PTR_ERR(dev->rq);
- goto out_free_tags;
- }
- blk_queue_max_segments(dev->rq, UBI_MAX_SG_COUNT);
- dev->rq->queuedata = dev;
- dev->gd->queue = dev->rq;
-
- dev->wq = alloc_workqueue("%s", 0, 0, gd->disk_name);
- if (!dev->wq) {
- ret = -ENOMEM;
- goto out_free_queue;
- }
- list_add_tail(&dev->list, &ubiblock_devices);
-
- add_disk(dev->gd);
- dev_info(disk_to_dev(dev->gd), "created from ubi%d:%d(%s)",
- dev->ubi_num, dev->vol_id, vi->name);
- mutex_unlock(&devices_mutex);
- return 0;
- out_free_queue:
- blk_cleanup_queue(dev->rq);
- out_free_tags:
- blk_mq_free_tag_set(&dev->tag_set);
- out_remove_minor:
- idr_remove(&ubiblock_minor_idr, gd->first_minor);
- out_put_disk:
- put_disk(dev->gd);
- out_free_dev:
- kfree(dev);
- out_unlock:
- mutex_unlock(&devices_mutex);
- return ret;
- }
- static void ubiblock_cleanup(struct ubiblock *dev)
- {
-
- del_gendisk(dev->gd);
-
- destroy_workqueue(dev->wq);
-
- blk_cleanup_queue(dev->rq);
- blk_mq_free_tag_set(&dev->tag_set);
- dev_info(disk_to_dev(dev->gd), "released");
- idr_remove(&ubiblock_minor_idr, dev->gd->first_minor);
- put_disk(dev->gd);
- }
- int ubiblock_remove(struct ubi_volume_info *vi)
- {
- struct ubiblock *dev;
- int ret;
- mutex_lock(&devices_mutex);
- dev = find_dev_nolock(vi->ubi_num, vi->vol_id);
- if (!dev) {
- ret = -ENODEV;
- goto out_unlock;
- }
-
- mutex_lock(&dev->dev_mutex);
- if (dev->refcnt > 0) {
- ret = -EBUSY;
- goto out_unlock_dev;
- }
-
- list_del(&dev->list);
- ubiblock_cleanup(dev);
- mutex_unlock(&dev->dev_mutex);
- mutex_unlock(&devices_mutex);
- kfree(dev);
- return 0;
- out_unlock_dev:
- mutex_unlock(&dev->dev_mutex);
- out_unlock:
- mutex_unlock(&devices_mutex);
- return ret;
- }
- static int ubiblock_resize(struct ubi_volume_info *vi)
- {
- struct ubiblock *dev;
- u64 disk_capacity = vi->used_bytes >> 9;
-
- mutex_lock(&devices_mutex);
- dev = find_dev_nolock(vi->ubi_num, vi->vol_id);
- if (!dev) {
- mutex_unlock(&devices_mutex);
- return -ENODEV;
- }
- if ((sector_t)disk_capacity != disk_capacity) {
- mutex_unlock(&devices_mutex);
- dev_warn(disk_to_dev(dev->gd), "the volume is too big (%d LEBs), cannot resize",
- vi->size);
- return -EFBIG;
- }
- mutex_lock(&dev->dev_mutex);
- if (get_capacity(dev->gd) != disk_capacity) {
- set_capacity(dev->gd, disk_capacity);
- dev_info(disk_to_dev(dev->gd), "resized to %lld bytes",
- vi->used_bytes);
- }
- mutex_unlock(&dev->dev_mutex);
- mutex_unlock(&devices_mutex);
- return 0;
- }
- static int ubiblock_notify(struct notifier_block *nb,
- unsigned long notification_type, void *ns_ptr)
- {
- struct ubi_notification *nt = ns_ptr;
- switch (notification_type) {
- case UBI_VOLUME_ADDED:
-
- break;
- case UBI_VOLUME_REMOVED:
- ubiblock_remove(&nt->vi);
- break;
- case UBI_VOLUME_RESIZED:
- ubiblock_resize(&nt->vi);
- break;
- case UBI_VOLUME_UPDATED:
-
- if (nt->vi.vol_type == UBI_STATIC_VOLUME)
- ubiblock_resize(&nt->vi);
- break;
- default:
- break;
- }
- return NOTIFY_OK;
- }
- static struct notifier_block ubiblock_notifier = {
- .notifier_call = ubiblock_notify,
- };
- static struct ubi_volume_desc * __init
- open_volume_desc(const char *name, int ubi_num, int vol_id)
- {
- if (ubi_num == -1)
-
- return ubi_open_volume_path(name, UBI_READONLY);
- else if (vol_id == -1)
-
- return ubi_open_volume_nm(ubi_num, name, UBI_READONLY);
- else
- return ubi_open_volume(ubi_num, vol_id, UBI_READONLY);
- }
- static void __init ubiblock_create_from_param(void)
- {
- int i, ret = 0;
- struct ubiblock_param *p;
- struct ubi_volume_desc *desc;
- struct ubi_volume_info vi;
-
- for (i = 0; i < ubiblock_devs; i++) {
- p = &ubiblock_param[i];
- desc = open_volume_desc(p->name, p->ubi_num, p->vol_id);
- if (IS_ERR(desc)) {
- pr_err(
- "UBI: block: can't open volume on ubi%d_%d, err=%ld\n",
- p->ubi_num, p->vol_id, PTR_ERR(desc));
- continue;
- }
- ubi_get_volume_info(desc, &vi);
- ubi_close_volume(desc);
- ret = ubiblock_create(&vi);
- if (ret) {
- pr_err(
- "UBI: block: can't add '%s' volume on ubi%d_%d, err=%d\n",
- vi.name, p->ubi_num, p->vol_id, ret);
- continue;
- }
- }
- }
- static void ubiblock_remove_all(void)
- {
- struct ubiblock *next;
- struct ubiblock *dev;
- mutex_lock(&devices_mutex);
- list_for_each_entry_safe(dev, next, &ubiblock_devices, list) {
-
- WARN_ON(dev->desc);
-
- list_del(&dev->list);
- ubiblock_cleanup(dev);
- kfree(dev);
- }
- mutex_unlock(&devices_mutex);
- }
- int __init ubiblock_init(void)
- {
- int ret;
- ubiblock_major = register_blkdev(0, "ubiblock");
- if (ubiblock_major < 0)
- return ubiblock_major;
-
- ubiblock_create_from_param();
-
- ret = ubi_register_volume_notifier(&ubiblock_notifier, 1);
- if (ret)
- goto err_unreg;
- return 0;
- err_unreg:
- unregister_blkdev(ubiblock_major, "ubiblock");
- ubiblock_remove_all();
- return ret;
- }
- void __exit ubiblock_exit(void)
- {
- ubi_unregister_volume_notifier(&ubiblock_notifier);
- ubiblock_remove_all();
- unregister_blkdev(ubiblock_major, "ubiblock");
- }
|