mars/mars_if_device.c

552 lines
14 KiB
C
Raw Normal View History

2010-06-14 14:27:40 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
/* Interface to a Linux device.
* 1 Input, 0 Outputs.
*/
2010-07-30 05:46:22 +00:00
//#define BRICK_DEBUGGING
//#define MARS_DEBUGGING
2010-12-10 17:40:20 +00:00
//#define LOG
#define REQUEST_MERGING
2010-07-30 05:46:22 +00:00
2010-06-14 14:27:40 +00:00
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/major.h>
#include <linux/genhd.h>
#include <linux/blkdev.h>
#include "mars.h"
///////////////////////// own type definitions ////////////////////////
#include "mars_if_device.h"
///////////////////////// own static definitions ////////////////////////
static int device_minor = 0;
2010-06-22 13:21:42 +00:00
//////////////// object / aspect constructors / destructors ///////////////
2010-06-14 14:27:40 +00:00
///////////////////////// linux operations ////////////////////////
/* callback
*/
2010-08-08 14:02:54 +00:00
static void _if_device_endio(struct generic_callback *cb)
2010-06-14 14:27:40 +00:00
{
2010-12-15 12:13:18 +00:00
struct if_device_mref_aspect *mref_a = cb->cb_private;
2010-11-26 13:45:10 +00:00
struct bio *bio;
struct bio_vec *bvec;
2010-12-10 17:40:20 +00:00
int i, k;
2010-08-04 17:32:04 +00:00
int error;
2010-11-26 13:45:10 +00:00
if (unlikely(!mref_a)) {
MARS_FAT("callback with no mref_a called. something is very wrong here!\n");
return;
}
2010-12-10 17:40:20 +00:00
#if 1
if (mref_a->yyy++ > 0)
MARS_ERR("yyy = %d\n", mref_a->yyy - 1);
#endif
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
for (k = 0; k < mref_a->bio_count; k++) {
bio = mref_a->orig_bio[k];
mref_a->orig_bio[k] = NULL;
if (unlikely(!bio)) {
MARS_FAT("callback with no bio called (k = %d). something is very wrong here!\n", k);
continue;
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
CHECK_ATOMIC(&bio->bi_comp_cnt, 1);
if (!atomic_dec_and_test(&bio->bi_comp_cnt)) {
continue;
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
bio_for_each_segment(bvec, bio, i) {
kunmap(bvec->bv_page);
}
error = mref_a->cb.cb_error;
if (unlikely(error < 0)) {
MARS_ERR("NYI: error=%d RETRY LOGIC %u\n", error, bio->bi_size);
} else { // bio conventions are slightly different...
error = 0;
bio->bi_size = 0;
}
bio->bi_check3++;
bio_endio(bio, error);
//bio_put(bio);
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
/* Kick off plugged mrefs
*/
static void _if_device_unplug(struct if_device_input *input)
{
LIST_HEAD(tmp_list);
unsigned long flags;
might_sleep();
down(&input->kick_sem);
traced_lock(&input->req_lock, flags);
if (!list_empty(&input->plug_anchor)) {
// move over the whole list
list_replace_init(&input->plug_anchor, &tmp_list);
2010-08-04 17:32:04 +00:00
}
2010-12-10 17:40:20 +00:00
traced_unlock(&input->req_lock, flags);
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
while (!list_empty(&tmp_list)) {
2010-12-15 12:13:18 +00:00
struct if_device_mref_aspect *mref_a;
struct mref_object *mref;
mref_a = container_of(tmp_list.next, struct if_device_mref_aspect, plug_head);
2010-12-10 17:40:20 +00:00
list_del_init(&mref_a->plug_head);
mref = mref_a->object;
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
#if 1
if (mref_a->xxx++ > 0)
MARS_ERR("xxx = %d\n", mref_a->xxx - 1);
#endif
2010-12-15 12:13:18 +00:00
GENERIC_INPUT_CALL(input, mref_io, mref);
GENERIC_INPUT_CALL(input, mref_put, mref);
2010-12-10 17:40:20 +00:00
}
2010-06-14 14:27:40 +00:00
}
2010-11-26 13:45:10 +00:00
/* accept a linux bio, convert to mref and call buf_io() on it.
2010-06-14 14:27:40 +00:00
*/
static int if_device_make_request(struct request_queue *q, struct bio *bio)
{
2010-08-10 17:39:30 +00:00
struct if_device_input *input;
struct if_device_brick *brick;
2010-12-15 12:13:18 +00:00
struct mref_object *mref = NULL;
struct if_device_mref_aspect *mref_a;
2010-08-08 14:02:54 +00:00
struct generic_callback *cb;
2010-11-26 13:45:10 +00:00
struct bio_vec *bvec;
int i;
2010-12-10 17:40:20 +00:00
bool assigned = false;
const bool unplug = bio_rw_flagged(bio, BIO_RW_UNPLUG);
//const bool barrier = ((bio->bi_rw & 1) != READ && bio_rw_flagged(bio, BIO_RW_BARRIER));
2010-11-26 13:45:10 +00:00
loff_t pos = ((loff_t)bio->bi_sector) << 9; // TODO: make dynamic
2010-12-10 17:40:20 +00:00
int rw = bio_data_dir(bio);
2010-08-04 17:32:04 +00:00
int error = -ENOSYS;
2010-06-14 14:27:40 +00:00
MARS_DBG("make_request(%d)\n", bio->bi_size);
2010-06-16 13:21:30 +00:00
2010-12-10 17:40:20 +00:00
might_sleep();
2010-08-10 17:39:30 +00:00
input = q->queuedata;
2010-08-04 17:32:04 +00:00
if (unlikely(!input))
goto err;
2010-06-14 14:27:40 +00:00
2010-08-10 17:39:30 +00:00
brick = input->brick;
if (unlikely(!brick))
2010-08-04 17:32:04 +00:00
goto err;
2010-06-14 14:27:40 +00:00
2010-12-10 17:40:20 +00:00
/* Get a reference to the bio.
* Will be released after bio_endio().
*/
atomic_inc(&bio->bi_cnt);
bio->bi_check = false;
bio->bi_check2 = 0;
bio->bi_check3 = 0;
2010-08-10 17:39:30 +00:00
/* THIS IS PROVISIONARY
*/
while (unlikely(!brick->is_active)) {
msleep(100);
}
2010-12-10 17:40:20 +00:00
_CHECK_ATOMIC(&bio->bi_comp_cnt, !=, 0);
atomic_set(&bio->bi_comp_cnt, 0);
#ifdef LOG
{
const unsigned short prio = bio_prio(bio);
const bool sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
const unsigned int ff = bio->bi_rw & REQ_FAILFAST_MASK;
MARS_INF("BIO rw = %lx len = %d prio = %d sync = %d unplug = %d ff = %d\n", bio->bi_rw, bio->bi_size, prio, sync, unplug, ff);
}
#endif
down(&input->kick_sem);
2010-11-26 13:45:10 +00:00
bio_for_each_segment(bvec, bio, i) {
int bv_len = bvec->bv_len;
void *data = kmap(bvec->bv_page);
data += bvec->bv_offset;
while (bv_len > 0) {
2010-12-10 17:40:20 +00:00
struct list_head *tmp;
unsigned long flags;
int len = 0;
mref = NULL;
mref_a = NULL;
#ifdef LOG
MARS_INF("rw = %d i = %d pos = %lld bv_page = %p bv_offset = %d data = %p bv_len = %d\n", rw, i, pos, bvec->bv_page, bvec->bv_offset, data, bv_len);
#endif
#ifdef REQUEST_MERGING
traced_lock(&input->req_lock, flags);
for (tmp = input->plug_anchor.next; tmp != &input->plug_anchor; tmp = tmp->next) {
2010-12-15 12:13:18 +00:00
struct if_device_mref_aspect *tmp_a;
tmp_a = container_of(tmp, struct if_device_mref_aspect, plug_head);
2010-12-10 17:40:20 +00:00
len = bv_len;
#ifdef LOG
MARS_INF("bio = %p mref = %p len = %d maxlen = %d\n", bio, mref, len, tmp_a->maxlen);
#endif
if (len > tmp_a->maxlen) {
len = tmp_a->maxlen;
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
if (len <= 0 || tmp_a->bio_count >= MAX_BIO)
continue;
if (tmp_a->object->ref_data + tmp_a->object->ref_len == data && tmp_a->object->ref_rw == rw
&& tmp_a->orig_page == bvec->bv_page) {
mref_a = tmp_a;
mref = tmp_a->object;
2010-11-26 13:45:10 +00:00
mref->ref_len += len;
2010-12-10 17:40:20 +00:00
mref_a->maxlen -= len;
CHECK_ATOMIC(&bio->bi_comp_cnt, 0);
atomic_inc(&bio->bi_comp_cnt);
mref_a->orig_bio[mref_a->bio_count++] = bio;
assigned = true;
#ifdef LOG
MARS_INF("merge bio = %p mref = %p bio_count = %d len = %d ref_len = %d\n", bio, mref, mref_a->bio_count, len, mref->ref_len);
#endif
break;
2010-11-26 13:45:10 +00:00
}
}
2010-12-10 17:40:20 +00:00
traced_unlock(&input->req_lock, flags);
2010-11-26 13:45:10 +00:00
#endif
if (!mref) {
error = -ENOMEM;
2010-12-15 12:13:18 +00:00
mref = if_device_alloc_mref(&brick->hidden_output, &input->mref_object_layout);
2010-12-10 17:40:20 +00:00
if (unlikely(!mref)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2010-12-15 12:13:18 +00:00
mref_a = if_device_mref_get_aspect(&brick->hidden_output, mref);
2010-12-10 17:40:20 +00:00
if (unlikely(!mref_a)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
cb = &mref_a->cb;
cb->cb_fn = _if_device_endio;
cb->cb_private = mref_a;
cb->cb_error = 0;
cb->cb_prev = NULL;
mref->ref_cb = cb;
mref_a->input = input;
mref->ref_rw = mref->ref_may_write = rw;
mref->ref_pos = pos;
2010-12-10 17:40:20 +00:00
mref->ref_len = PAGE_SIZE;
//mref->ref_len = 512;
mref->ref_data = data; // direct IO
2010-12-15 12:13:18 +00:00
error = GENERIC_INPUT_CALL(input, mref_get, mref);
2010-12-10 17:40:20 +00:00
if (unlikely(error < 0)) {
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
goto err;
2010-12-10 17:40:20 +00:00
}
2010-11-26 13:45:10 +00:00
2010-12-10 17:40:20 +00:00
CHECK_ATOMIC(&bio->bi_comp_cnt, 0);
atomic_inc(&bio->bi_comp_cnt);
mref_a->orig_page = bvec->bv_page;
mref_a->orig_bio[0] = bio;
mref_a->bio_count = 1;
assigned = true;
len = bv_len;
if (len > mref->ref_len)
len = mref->ref_len;
mref_a->maxlen = mref->ref_len - len;
2010-11-26 13:45:10 +00:00
mref->ref_len = len;
2010-12-10 17:40:20 +00:00
traced_lock(&input->req_lock, flags);
list_add_tail(&mref_a->plug_head, &input->plug_anchor);
traced_unlock(&input->req_lock, flags);
2010-11-26 13:45:10 +00:00
}
pos += len;
data += len;
bv_len -= len;
} // while bv_len > 0
} // foreach bvec
2010-12-10 17:40:20 +00:00
up(&input->kick_sem);
2010-11-26 13:45:10 +00:00
error = 0;
2010-06-14 14:27:40 +00:00
err:
2010-12-10 17:40:20 +00:00
2010-11-26 13:45:10 +00:00
if (error < 0) {
MARS_ERR("cannot submit request, status=%d\n", error);
2010-12-10 17:40:20 +00:00
if (assigned) {
//...
} else {
bio->bi_check3++;
bio_endio(bio, error);
}
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
if (unplug) {
_if_device_unplug(input);
2010-11-26 13:45:10 +00:00
}
2010-12-10 17:40:20 +00:00
2010-08-04 17:32:04 +00:00
return error;
2010-06-14 14:27:40 +00:00
}
static int if_device_open(struct block_device *bdev, fmode_t mode)
{
struct if_device_input *input = bdev->bd_disk->private_data;
(void)input;
MARS_DBG("if_device_open()\n");
return 0;
}
static int if_device_release(struct gendisk *gd, fmode_t mode)
{
MARS_DBG("if_device_close()\n");
return 0;
}
static const struct block_device_operations if_device_blkdev_ops = {
.owner = THIS_MODULE,
.open = if_device_open,
.release = if_device_release,
};
////////////////// own brick / input / output operations //////////////////
2010-06-17 16:57:10 +00:00
static void if_device_unplug(struct request_queue *q)
{
2010-12-10 17:40:20 +00:00
struct if_device_input *input = q->queuedata;
2010-06-17 16:57:10 +00:00
MARS_DBG("UNPLUG\n");
2010-12-10 17:40:20 +00:00
#ifdef LOG
2010-11-26 13:45:10 +00:00
MARS_INF("UNPLUG\n");
2010-12-10 17:40:20 +00:00
#endif
2010-06-17 16:57:10 +00:00
queue_flag_clear_unlocked(QUEUE_FLAG_PLUGGED, q);
2010-12-10 17:40:20 +00:00
_if_device_unplug(input);
2010-06-17 16:57:10 +00:00
}
2010-07-23 11:55:18 +00:00
//////////////// object / aspect constructors / destructors ///////////////
2010-12-15 12:13:18 +00:00
static int if_device_mref_aspect_init_fn(struct generic_aspect *_ini, void *_init_data)
2010-07-23 11:55:18 +00:00
{
2010-12-15 12:13:18 +00:00
struct if_device_mref_aspect *ini = (void*)_ini;
2010-12-10 17:40:20 +00:00
//INIT_LIST_HEAD(&ini->tmp_head);
INIT_LIST_HEAD(&ini->plug_head);
2010-07-23 11:55:18 +00:00
return 0;
}
2010-12-15 12:13:18 +00:00
static void if_device_mref_aspect_exit_fn(struct generic_aspect *_ini, void *_init_data)
2010-08-08 09:03:42 +00:00
{
2010-12-15 12:13:18 +00:00
struct if_device_mref_aspect *ini = (void*)_ini;
2010-12-10 17:40:20 +00:00
//CHECK_HEAD_EMPTY(&ini->tmp_head);
CHECK_HEAD_EMPTY(&ini->plug_head);
2010-08-08 09:03:42 +00:00
}
2010-07-23 11:55:18 +00:00
MARS_MAKE_STATICS(if_device);
2010-06-14 14:27:40 +00:00
//////////////////////// contructors / destructors ////////////////////////
static int if_device_brick_construct(struct if_device_brick *brick)
{
2010-08-10 17:39:30 +00:00
struct if_device_output *hidden = &brick->hidden_output;
_if_device_output_init(brick, hidden, "internal");
2010-06-14 14:27:40 +00:00
return 0;
}
static int if_device_brick_destruct(struct if_device_brick *brick)
{
return 0;
}
2010-08-26 17:12:30 +00:00
static int if_device_switch(struct if_device_brick *brick, bool state)
2010-06-14 14:27:40 +00:00
{
2010-08-26 17:12:30 +00:00
struct if_device_input *input = brick->inputs[0];
2010-06-14 14:27:40 +00:00
struct request_queue *q;
struct gendisk *disk;
int minor;
2010-08-26 17:12:30 +00:00
struct mars_info info = {};
unsigned long capacity;
int status;
2010-06-14 14:27:40 +00:00
2010-07-30 05:46:22 +00:00
//MARS_DBG("1\n");
2010-08-26 17:12:30 +00:00
status = GENERIC_INPUT_CALL(input, mars_get_info, &info);
if (status < 0) {
MARS_ERR("cannot get device info, status=%d\n", status);
return status;
}
capacity = info.current_size >> 9; // TODO: make this dynamic
2010-08-04 17:32:04 +00:00
q = blk_alloc_queue(GFP_MARS);
2010-06-14 14:27:40 +00:00
if (!q) {
MARS_ERR("cannot allocate device request queue\n");
return -ENOMEM;
}
2010-06-17 16:57:10 +00:00
q->queuedata = input;
2010-06-14 14:27:40 +00:00
input->q = q;
2010-07-30 05:46:22 +00:00
//MARS_DBG("2\n");
2010-06-14 14:27:40 +00:00
disk = alloc_disk(1);
if (!disk) {
MARS_ERR("cannot allocate gendisk\n");
return -ENOMEM;
}
2010-07-30 05:46:22 +00:00
//MARS_DBG("3\n");
2010-06-14 14:27:40 +00:00
minor = device_minor++; //TODO: protect against races (e.g. atomic_t)
disk->queue = q;
disk->major = MARS_MAJOR; //TODO: make this dynamic for >256 devices
disk->first_minor = minor;
disk->fops = &if_device_blkdev_ops;
sprintf(disk->disk_name, "mars%d", minor);
MARS_DBG("created device name %s\n", disk->disk_name);
disk->private_data = input;
2010-06-16 13:21:30 +00:00
set_capacity(disk, capacity);
2010-06-14 14:27:40 +00:00
blk_queue_make_request(q, if_device_make_request);
blk_queue_max_segment_size(q, MARS_MAX_SEGMENT_SIZE);
blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2010-06-17 16:57:10 +00:00
q->unplug_fn = if_device_unplug;
2010-12-10 17:40:20 +00:00
sema_init(&input->kick_sem, 1);
2010-06-18 11:44:14 +00:00
spin_lock_init(&input->req_lock);
q->queue_lock = &input->req_lock; // needed!
2010-06-17 19:36:06 +00:00
//blk_queue_ordered(q, QUEUE_ORDERED_DRAIN, NULL);//???
2010-06-14 14:27:40 +00:00
2010-07-30 05:46:22 +00:00
//MARS_DBG("4\n");
2010-06-14 14:27:40 +00:00
input->bdev = bdget(MKDEV(disk->major, minor));
/* we have no partitions. we contain only ourselves. */
input->bdev->bd_contains = input->bdev;
#if 0 // ???
q->backing_dev_info.congested_fn = mars_congested;
q->backing_dev_info.congested_data = input;
#endif
#if 0 // ???
blk_queue_merge_bvec(q, mars_merge_bvec);
#endif
2010-12-10 17:40:20 +00:00
INIT_LIST_HEAD(&input->plug_anchor);
2010-06-14 14:27:40 +00:00
2010-06-18 11:44:14 +00:00
// point of no return
2010-07-30 05:46:22 +00:00
//MARS_DBG("99999\n");
2010-06-14 14:27:40 +00:00
add_disk(disk);
input->disk = disk;
2010-06-18 11:44:14 +00:00
//set_device_ro(input->bdev, 0); // TODO: implement modes
2010-08-26 17:12:30 +00:00
brick->is_active = true;
return 0;
}
static int if_device_input_construct(struct if_device_input *input)
{
2010-06-14 14:27:40 +00:00
return 0;
}
static int if_device_input_destruct(struct if_device_input *input)
{
if (input->bdev)
bdput(input->bdev);
if (input->disk) {
del_gendisk(input->disk);
//put_disk(input->disk);
}
if (input->q)
blk_cleanup_queue(input->q);
return 0;
}
2010-08-10 17:39:30 +00:00
static int if_device_output_construct(struct if_device_output *output)
{
return 0;
}
2010-06-14 14:27:40 +00:00
///////////////////////// static structs ////////////////////////
static struct if_device_brick_ops if_device_brick_ops = {
2010-08-26 17:12:30 +00:00
.brick_switch = if_device_switch,
2010-06-14 14:27:40 +00:00
};
2010-08-10 17:39:30 +00:00
static struct if_device_output_ops if_device_output_ops = {
.make_object_layout = if_device_make_object_layout,
};
const struct if_device_input_type if_device_input_type = {
2010-06-14 14:27:40 +00:00
.type_name = "if_device_input",
.input_size = sizeof(struct if_device_input),
.input_construct = &if_device_input_construct,
.input_destruct = &if_device_input_destruct,
};
2010-07-23 11:55:18 +00:00
static const struct if_device_input_type *if_device_input_types[] = {
2010-06-14 14:27:40 +00:00
&if_device_input_type,
};
2010-08-10 17:39:30 +00:00
const struct if_device_output_type if_device_output_type = {
.type_name = "if_device_output",
.output_size = sizeof(struct if_device_output),
.master_ops = &if_device_output_ops,
.output_construct = &if_device_output_construct,
.aspect_types = if_device_aspect_types,
.layout_code = {
2010-12-15 12:13:18 +00:00
[BRICK_OBJ_MREF] = LAYOUT_ALL,
2010-08-10 17:39:30 +00:00
}
};
2010-07-23 11:55:18 +00:00
const struct if_device_brick_type if_device_brick_type = {
2010-06-14 14:27:40 +00:00
.type_name = "if_device_brick",
.brick_size = sizeof(struct if_device_brick),
.max_inputs = 1,
.max_outputs = 0,
.master_ops = &if_device_brick_ops,
.default_input_types = if_device_input_types,
.brick_construct = &if_device_brick_construct,
.brick_destruct = &if_device_brick_destruct,
};
EXPORT_SYMBOL_GPL(if_device_brick_type);
////////////////// module init stuff /////////////////////////
static void __exit exit_if_device(void)
{
int status;
printk(MARS_INFO "exit_if_device()\n");
status = if_device_unregister_brick_type();
unregister_blkdev(DRBD_MAJOR, "mars");
}
static int __init init_if_device(void)
{
int status;
2010-08-04 17:32:04 +00:00
(void)if_device_aspect_types; // not used, shut up gcc
2010-06-14 14:27:40 +00:00
printk(MARS_INFO "init_if_device()\n");
status = register_blkdev(DRBD_MAJOR, "mars");
if (status)
return status;
status = if_device_register_brick_type();
if (status)
goto err_device;
return status;
err_device:
MARS_ERR("init_if_device() status=%d\n", status);
exit_if_device();
return status;
}
MODULE_DESCRIPTION("MARS if_device");
MODULE_AUTHOR("Thomas Schoebel-Theuer <tst@1und1.de>");
MODULE_LICENSE("GPL");
module_init(init_if_device);
module_exit(exit_if_device);