aoeblk.c 7.2 KB
Newer Older
E
Ed L. Cashin 已提交
1
/* Copyright (c) 2007 Coraid, Inc.  See COPYING for GPL terms. */
L
Linus Torvalds 已提交
2 3 4 5 6 7 8
/*
 * aoeblk.c
 * block device routines
 */

#include <linux/hdreg.h>
#include <linux/blkdev.h>
9
#include <linux/backing-dev.h>
L
Linus Torvalds 已提交
10 11 12 13 14 15
#include <linux/fs.h>
#include <linux/ioctl.h>
#include <linux/genhd.h>
#include <linux/netdevice.h>
#include "aoe.h"

16
static struct kmem_cache *buf_pool_cache;
L
Linus Torvalds 已提交
17

18 19
static ssize_t aoedisk_show_state(struct device *dev,
				  struct device_attribute *attr, char *page)
L
Linus Torvalds 已提交
20
{
21
	struct gendisk *disk = dev_to_disk(dev);
L
Linus Torvalds 已提交
22 23 24 25 26
	struct aoedev *d = disk->private_data;

	return snprintf(page, PAGE_SIZE,
			"%s%s\n",
			(d->flags & DEVFL_UP) ? "up" : "down",
27
			(d->flags & DEVFL_KICKME) ? ",kickme" :
28 29
			(d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
	/* I'd rather see nopen exported so we can ditch closewait */
L
Linus Torvalds 已提交
30
}
31 32
static ssize_t aoedisk_show_mac(struct device *dev,
				struct device_attribute *attr, char *page)
L
Linus Torvalds 已提交
33
{
34
	struct gendisk *disk = dev_to_disk(dev);
L
Linus Torvalds 已提交
35
	struct aoedev *d = disk->private_data;
36
	struct aoetgt *t = d->targets[0];
L
Linus Torvalds 已提交
37

38 39
	if (t == NULL)
		return snprintf(page, PAGE_SIZE, "none\n");
40
	return snprintf(page, PAGE_SIZE, "%012llx\n", mac_addr(t->addr));
L
Linus Torvalds 已提交
41
}
42 43
static ssize_t aoedisk_show_netif(struct device *dev,
				  struct device_attribute *attr, char *page)
L
Linus Torvalds 已提交
44
{
45
	struct gendisk *disk = dev_to_disk(dev);
L
Linus Torvalds 已提交
46
	struct aoedev *d = disk->private_data;
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
	struct net_device *nds[8], **nd, **nnd, **ne;
	struct aoetgt **t, **te;
	struct aoeif *ifp, *e;
	char *p;

	memset(nds, 0, sizeof nds);
	nd = nds;
	ne = nd + ARRAY_SIZE(nds);
	t = d->targets;
	te = t + NTARGETS;
	for (; t < te && *t; t++) {
		ifp = (*t)->ifs;
		e = ifp + NAOEIFS;
		for (; ifp < e && ifp->nd; ifp++) {
			for (nnd = nds; nnd < nd; nnd++)
				if (*nnd == ifp->nd)
					break;
			if (nnd == nd && nd != ne)
				*nd++ = ifp->nd;
		}
	}
L
Linus Torvalds 已提交
68

69 70 71 72 73 74 75 76 77
	ne = nd;
	nd = nds;
	if (*nd == NULL)
		return snprintf(page, PAGE_SIZE, "none\n");
	for (p = page; nd < ne; nd++)
		p += snprintf(p, PAGE_SIZE - (p-page), "%s%s",
			p == page ? "" : ",", (*nd)->name);
	p += snprintf(p, PAGE_SIZE - (p-page), "\n");
	return p-page;
L
Linus Torvalds 已提交
78
}
79
/* firmware version */
80 81
static ssize_t aoedisk_show_fwver(struct device *dev,
				  struct device_attribute *attr, char *page)
82
{
83
	struct gendisk *disk = dev_to_disk(dev);
84 85 86 87
	struct aoedev *d = disk->private_data;

	return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
}
L
Linus Torvalds 已提交
88

89 90 91 92 93 94
static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
static struct device_attribute dev_attr_firmware_version = {
	.attr = { .name = "firmware-version", .mode = S_IRUGO, .owner = THIS_MODULE },
	.show = aoedisk_show_fwver,
95
};
L
Linus Torvalds 已提交
96

97
static struct attribute *aoe_attrs[] = {
98 99 100 101 102
	&dev_attr_state.attr,
	&dev_attr_mac.attr,
	&dev_attr_netif.attr,
	&dev_attr_firmware_version.attr,
	NULL,
103 104 105 106 107 108 109
};

static const struct attribute_group attr_group = {
	.attrs = aoe_attrs,
};

static int
L
Linus Torvalds 已提交
110 111
aoedisk_add_sysfs(struct aoedev *d)
{
112
	return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
L
Linus Torvalds 已提交
113 114 115 116
}
void
aoedisk_rm_sysfs(struct aoedev *d)
{
117
	sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
}

static int
aoeblk_open(struct inode *inode, struct file *filp)
{
	struct aoedev *d;
	ulong flags;

	d = inode->i_bdev->bd_disk->private_data;

	spin_lock_irqsave(&d->lock, flags);
	if (d->flags & DEVFL_UP) {
		d->nopen++;
		spin_unlock_irqrestore(&d->lock, flags);
		return 0;
	}
	spin_unlock_irqrestore(&d->lock, flags);
	return -ENODEV;
}

static int
aoeblk_release(struct inode *inode, struct file *filp)
{
	struct aoedev *d;
	ulong flags;

	d = inode->i_bdev->bd_disk->private_data;

	spin_lock_irqsave(&d->lock, flags);

148
	if (--d->nopen == 0) {
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158
		spin_unlock_irqrestore(&d->lock, flags);
		aoecmd_cfg(d->aoemajor, d->aoeminor);
		return 0;
	}
	spin_unlock_irqrestore(&d->lock, flags);

	return 0;
}

static int
159
aoeblk_make_request(struct request_queue *q, struct bio *bio)
L
Linus Torvalds 已提交
160
{
161
	struct sk_buff_head queue;
L
Linus Torvalds 已提交
162 163 164 165 166 167
	struct aoedev *d;
	struct buf *buf;
	ulong flags;

	blk_queue_bounce(q, &bio);

168 169 170 171 172
	if (bio == NULL) {
		printk(KERN_ERR "aoe: bio is NULL\n");
		BUG();
		return 0;
	}
L
Linus Torvalds 已提交
173
	d = bio->bi_bdev->bd_disk->private_data;
174 175 176 177 178 179 180 181 182 183 184
	if (d == NULL) {
		printk(KERN_ERR "aoe: bd_disk->private_data is NULL\n");
		BUG();
		bio_endio(bio, -ENXIO);
		return 0;
	} else if (bio->bi_io_vec == NULL) {
		printk(KERN_ERR "aoe: bi_io_vec is NULL\n");
		BUG();
		bio_endio(bio, -ENXIO);
		return 0;
	}
L
Linus Torvalds 已提交
185 186
	buf = mempool_alloc(d->bufpool, GFP_NOIO);
	if (buf == NULL) {
E
Ed L. Cashin 已提交
187
		printk(KERN_INFO "aoe: buf allocation failure\n");
188
		bio_endio(bio, -ENOMEM);
L
Linus Torvalds 已提交
189 190 191 192
		return 0;
	}
	memset(buf, 0, sizeof(*buf));
	INIT_LIST_HEAD(&buf->bufs);
193
	buf->stime = jiffies;
L
Linus Torvalds 已提交
194 195 196
	buf->bio = bio;
	buf->resid = bio->bi_size;
	buf->sector = bio->bi_sector;
E
Ed L. Cashin 已提交
197
	buf->bv = &bio->bi_io_vec[bio->bi_idx];
L
Linus Torvalds 已提交
198
	buf->bv_resid = buf->bv->bv_len;
199 200
	WARN_ON(buf->bv_resid == 0);
	buf->bv_off = buf->bv->bv_offset;
L
Linus Torvalds 已提交
201 202 203 204

	spin_lock_irqsave(&d->lock, flags);

	if ((d->flags & DEVFL_UP) == 0) {
205
		printk(KERN_INFO "aoe: device %ld.%d is not up\n",
E
Ed L. Cashin 已提交
206
			d->aoemajor, d->aoeminor);
L
Linus Torvalds 已提交
207 208
		spin_unlock_irqrestore(&d->lock, flags);
		mempool_free(buf, d->bufpool);
209
		bio_endio(bio, -ENXIO);
L
Linus Torvalds 已提交
210 211 212 213 214
		return 0;
	}

	list_add_tail(&buf->bufs, &d->bufq);

215
	aoecmd_work(d);
216 217
	__skb_queue_head_init(&queue);
	skb_queue_splice_init(&d->sendq, &queue);
L
Linus Torvalds 已提交
218 219

	spin_unlock_irqrestore(&d->lock, flags);
220
	aoenet_xmit(&queue);
221

L
Linus Torvalds 已提交
222 223 224 225
	return 0;
}

static int
226
aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
L
Linus Torvalds 已提交
227
{
228
	struct aoedev *d = bdev->bd_disk->private_data;
L
Linus Torvalds 已提交
229 230

	if ((d->flags & DEVFL_UP) == 0) {
E
Ed L. Cashin 已提交
231
		printk(KERN_ERR "aoe: disk not up\n");
L
Linus Torvalds 已提交
232 233 234
		return -ENODEV;
	}

235 236 237 238
	geo->cylinders = d->geo.cylinders;
	geo->heads = d->geo.heads;
	geo->sectors = d->geo.sectors;
	return 0;
L
Linus Torvalds 已提交
239 240 241 242 243
}

static struct block_device_operations aoe_bdops = {
	.open = aoeblk_open,
	.release = aoeblk_release,
244
	.getgeo = aoeblk_getgeo,
L
Linus Torvalds 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257
	.owner = THIS_MODULE,
};

/* alloc_disk and add_disk can sleep */
void
aoeblk_gdalloc(void *vp)
{
	struct aoedev *d = vp;
	struct gendisk *gd;
	ulong flags;

	gd = alloc_disk(AOE_PARTITIONS);
	if (gd == NULL) {
258 259
		printk(KERN_ERR
			"aoe: cannot allocate disk structure for %ld.%d\n",
E
Ed L. Cashin 已提交
260
			d->aoemajor, d->aoeminor);
261
		goto err;
L
Linus Torvalds 已提交
262 263
	}

264
	d->bufpool = mempool_create_slab_pool(MIN_BUFS, buf_pool_cache);
L
Linus Torvalds 已提交
265
	if (d->bufpool == NULL) {
266
		printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
E
Ed L. Cashin 已提交
267
			d->aoemajor, d->aoeminor);
268
		goto err_disk;
L
Linus Torvalds 已提交
269 270 271
	}

	blk_queue_make_request(&d->blkq, aoeblk_make_request);
272 273 274
	if (bdi_init(&d->blkq.backing_dev_info))
		goto err_mempool;
	spin_lock_irqsave(&d->lock, flags);
L
Linus Torvalds 已提交
275 276 277 278
	gd->major = AOE_MAJOR;
	gd->first_minor = d->sysminor * AOE_PARTITIONS;
	gd->fops = &aoe_bdops;
	gd->private_data = d;
279
	set_capacity(gd, d->ssize);
280
	snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
L
Linus Torvalds 已提交
281 282 283 284
		d->aoemajor, d->aoeminor);

	gd->queue = &d->blkq;
	d->gd = gd;
285
	d->flags &= ~DEVFL_GDALLOC;
L
Linus Torvalds 已提交
286 287 288 289 290 291
	d->flags |= DEVFL_UP;

	spin_unlock_irqrestore(&d->lock, flags);

	add_disk(gd);
	aoedisk_add_sysfs(d);
292 293 294 295 296 297 298 299 300 301
	return;

err_mempool:
	mempool_destroy(d->bufpool);
err_disk:
	put_disk(gd);
err:
	spin_lock_irqsave(&d->lock, flags);
	d->flags &= ~DEVFL_GDALLOC;
	spin_unlock_irqrestore(&d->lock, flags);
L
Linus Torvalds 已提交
302 303 304 305 306 307 308 309 310 311 312
}

void
aoeblk_exit(void)
{
	kmem_cache_destroy(buf_pool_cache);
}

int __init
aoeblk_init(void)
{
313
	buf_pool_cache = kmem_cache_create("aoe_bufs",
L
Linus Torvalds 已提交
314
					   sizeof(struct buf),
315
					   0, 0, NULL);
L
Linus Torvalds 已提交
316 317 318 319 320 321
	if (buf_pool_cache == NULL)
		return -ENOMEM;

	return 0;
}