aoeblk.c 7.5 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
/*
 * aoeblk.c
 * block device routines
 */

7
#include <linux/kernel.h>
L
Linus Torvalds 已提交
8 9
#include <linux/hdreg.h>
#include <linux/blkdev.h>
10
#include <linux/backing-dev.h>
L
Linus Torvalds 已提交
11 12
#include <linux/fs.h>
#include <linux/ioctl.h>
13
#include <linux/slab.h>
14
#include <linux/ratelimit.h>
L
Linus Torvalds 已提交
15 16
#include <linux/genhd.h>
#include <linux/netdevice.h>
17
#include <linux/mutex.h>
L
Linus Torvalds 已提交
18 19
#include "aoe.h"

20
static DEFINE_MUTEX(aoeblk_mutex);
21
static struct kmem_cache *buf_pool_cache;
L
Linus Torvalds 已提交
22

23 24
static ssize_t aoedisk_show_state(struct device *dev,
				  struct device_attribute *attr, char *page)
L
Linus Torvalds 已提交
25
{
26
	struct gendisk *disk = dev_to_disk(dev);
L
Linus Torvalds 已提交
27 28 29 30 31
	struct aoedev *d = disk->private_data;

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

43 44
	if (t == NULL)
		return snprintf(page, PAGE_SIZE, "none\n");
45
	return snprintf(page, PAGE_SIZE, "%pm\n", t->addr);
L
Linus Torvalds 已提交
46
}
47 48
static ssize_t aoedisk_show_netif(struct device *dev,
				  struct device_attribute *attr, char *page)
L
Linus Torvalds 已提交
49
{
50
	struct gendisk *disk = dev_to_disk(dev);
L
Linus Torvalds 已提交
51
	struct aoedev *d = disk->private_data;
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	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 已提交
73

74 75 76 77 78 79 80 81 82
	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 已提交
83
}
84
/* firmware version */
85 86
static ssize_t aoedisk_show_fwver(struct device *dev,
				  struct device_attribute *attr, char *page)
87
{
88
	struct gendisk *disk = dev_to_disk(dev);
89 90 91 92
	struct aoedev *d = disk->private_data;

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

94 95 96 97
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 = {
98
	.attr = { .name = "firmware-version", .mode = S_IRUGO },
99
	.show = aoedisk_show_fwver,
100
};
L
Linus Torvalds 已提交
101

102
static struct attribute *aoe_attrs[] = {
103 104 105 106 107
	&dev_attr_state.attr,
	&dev_attr_mac.attr,
	&dev_attr_netif.attr,
	&dev_attr_firmware_version.attr,
	NULL,
108 109 110 111 112 113 114
};

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

static int
L
Linus Torvalds 已提交
115 116
aoedisk_add_sysfs(struct aoedev *d)
{
117
	return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
L
Linus Torvalds 已提交
118 119 120 121
}
void
aoedisk_rm_sysfs(struct aoedev *d)
{
122
	sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
L
Linus Torvalds 已提交
123 124 125
}

static int
A
Al Viro 已提交
126
aoeblk_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
127
{
A
Al Viro 已提交
128
	struct aoedev *d = bdev->bd_disk->private_data;
L
Linus Torvalds 已提交
129 130
	ulong flags;

131
	mutex_lock(&aoeblk_mutex);
L
Linus Torvalds 已提交
132 133 134 135
	spin_lock_irqsave(&d->lock, flags);
	if (d->flags & DEVFL_UP) {
		d->nopen++;
		spin_unlock_irqrestore(&d->lock, flags);
136
		mutex_unlock(&aoeblk_mutex);
L
Linus Torvalds 已提交
137 138 139
		return 0;
	}
	spin_unlock_irqrestore(&d->lock, flags);
140
	mutex_unlock(&aoeblk_mutex);
L
Linus Torvalds 已提交
141 142 143 144
	return -ENODEV;
}

static int
A
Al Viro 已提交
145
aoeblk_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
146
{
A
Al Viro 已提交
147
	struct aoedev *d = disk->private_data;
L
Linus Torvalds 已提交
148 149 150 151
	ulong flags;

	spin_lock_irqsave(&d->lock, flags);

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

	return 0;
}

static int
163
aoeblk_make_request(struct request_queue *q, struct bio *bio)
L
Linus Torvalds 已提交
164
{
165
	struct sk_buff_head queue;
L
Linus Torvalds 已提交
166 167 168 169 170 171
	struct aoedev *d;
	struct buf *buf;
	ulong flags;

	blk_queue_bounce(q, &bio);

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

	spin_lock_irqsave(&d->lock, flags);

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

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

219
	aoecmd_work(d);
220 221
	__skb_queue_head_init(&queue);
	skb_queue_splice_init(&d->sendq, &queue);
L
Linus Torvalds 已提交
222 223

	spin_unlock_irqrestore(&d->lock, flags);
224
	aoenet_xmit(&queue);
225

L
Linus Torvalds 已提交
226 227 228 229
	return 0;
}

static int
230
aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
L
Linus Torvalds 已提交
231
{
232
	struct aoedev *d = bdev->bd_disk->private_data;
L
Linus Torvalds 已提交
233 234

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

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

245
static const struct block_device_operations aoe_bdops = {
A
Al Viro 已提交
246 247
	.open = aoeblk_open,
	.release = aoeblk_release,
248
	.getgeo = aoeblk_getgeo,
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261
	.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) {
262 263
		printk(KERN_ERR
			"aoe: cannot allocate disk structure for %ld.%d\n",
E
Ed L. Cashin 已提交
264
			d->aoemajor, d->aoeminor);
265
		goto err;
L
Linus Torvalds 已提交
266 267
	}

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

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

291
	gd->queue = d->blkq;
L
Linus Torvalds 已提交
292
	d->gd = gd;
293
	d->flags &= ~DEVFL_GDALLOC;
L
Linus Torvalds 已提交
294 295 296 297 298 299
	d->flags |= DEVFL_UP;

	spin_unlock_irqrestore(&d->lock, flags);

	add_disk(gd);
	aoedisk_add_sysfs(d);
300 301
	return;

302 303 304
err_blkq:
	blk_cleanup_queue(d->blkq);
	d->blkq = NULL;
305 306 307 308 309 310 311 312
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 已提交
313 314 315 316 317 318 319 320 321 322 323
}

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

int __init
aoeblk_init(void)
{
324
	buf_pool_cache = kmem_cache_create("aoe_bufs",
L
Linus Torvalds 已提交
325
					   sizeof(struct buf),
326
					   0, 0, NULL);
L
Linus Torvalds 已提交
327 328 329 330 331 332
	if (buf_pool_cache == NULL)
		return -ENOMEM;

	return 0;
}