blob: 826d12381e21f546c099be3079604ca5412868f0 [file] [log] [blame]
Ed L. Cashin26114642006-09-20 14:36:48 -04001/* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoeblk.c
4 * block device routines
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
Andrew Morton43cbe2c2007-12-10 15:49:13 -08009#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fs.h>
11#include <linux/ioctl.h>
12#include <linux/genhd.h>
13#include <linux/netdevice.h>
14#include "aoe.h"
15
Christoph Lametere18b8902006-12-06 20:33:20 -080016static struct kmem_cache *buf_pool_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Kay Sieversedfaa7c2007-05-21 22:08:01 +020018static ssize_t aoedisk_show_state(struct device *dev,
19 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020021 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 struct aoedev *d = disk->private_data;
23
24 return snprintf(page, PAGE_SIZE,
25 "%s%s\n",
26 (d->flags & DEVFL_UP) ? "up" : "down",
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050027 (d->flags & DEVFL_PAUSE) ? ",paused" :
28 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
29 /* I'd rather see nopen exported so we can ditch closewait */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020031static ssize_t aoedisk_show_mac(struct device *dev,
32 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020034 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 struct aoedev *d = disk->private_data;
36
37 return snprintf(page, PAGE_SIZE, "%012llx\n",
38 (unsigned long long)mac_addr(d->addr));
39}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020040static ssize_t aoedisk_show_netif(struct device *dev,
41 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020043 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct aoedev *d = disk->private_data;
45
46 return snprintf(page, PAGE_SIZE, "%s\n", d->ifp->name);
47}
Ed L Cashin4613ed22005-04-29 10:24:25 -040048/* firmware version */
Kay Sieversedfaa7c2007-05-21 22:08:01 +020049static ssize_t aoedisk_show_fwver(struct device *dev,
50 struct device_attribute *attr, char *page)
Ed L Cashin4613ed22005-04-29 10:24:25 -040051{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020052 struct gendisk *disk = dev_to_disk(dev);
Ed L Cashin4613ed22005-04-29 10:24:25 -040053 struct aoedev *d = disk->private_data;
54
55 return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
56}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Kay Sieversedfaa7c2007-05-21 22:08:01 +020058static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
59static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
60static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
61static struct device_attribute dev_attr_firmware_version = {
62 .attr = { .name = "firmware-version", .mode = S_IRUGO, .owner = THIS_MODULE },
63 .show = aoedisk_show_fwver,
Ed L Cashin4613ed22005-04-29 10:24:25 -040064};
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -070066static struct attribute *aoe_attrs[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +020067 &dev_attr_state.attr,
68 &dev_attr_mac.attr,
69 &dev_attr_netif.attr,
70 &dev_attr_firmware_version.attr,
71 NULL,
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -070072};
73
74static const struct attribute_group attr_group = {
75 .attrs = aoe_attrs,
76};
77
78static int
Linus Torvalds1da177e2005-04-16 15:20:36 -070079aoedisk_add_sysfs(struct aoedev *d)
80{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020081 return sysfs_create_group(&d->gd->dev.kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83void
84aoedisk_rm_sysfs(struct aoedev *d)
85{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020086 sysfs_remove_group(&d->gd->dev.kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89static int
90aoeblk_open(struct inode *inode, struct file *filp)
91{
92 struct aoedev *d;
93 ulong flags;
94
95 d = inode->i_bdev->bd_disk->private_data;
96
97 spin_lock_irqsave(&d->lock, flags);
98 if (d->flags & DEVFL_UP) {
99 d->nopen++;
100 spin_unlock_irqrestore(&d->lock, flags);
101 return 0;
102 }
103 spin_unlock_irqrestore(&d->lock, flags);
104 return -ENODEV;
105}
106
107static int
108aoeblk_release(struct inode *inode, struct file *filp)
109{
110 struct aoedev *d;
111 ulong flags;
112
113 d = inode->i_bdev->bd_disk->private_data;
114
115 spin_lock_irqsave(&d->lock, flags);
116
Ed L. Cashin5f7702f2006-01-19 13:46:27 -0500117 if (--d->nopen == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 spin_unlock_irqrestore(&d->lock, flags);
119 aoecmd_cfg(d->aoemajor, d->aoeminor);
120 return 0;
121 }
122 spin_unlock_irqrestore(&d->lock, flags);
123
124 return 0;
125}
126
127static int
Jens Axboe165125e2007-07-24 09:28:11 +0200128aoeblk_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct aoedev *d;
131 struct buf *buf;
132 struct sk_buff *sl;
133 ulong flags;
134
135 blk_queue_bounce(q, &bio);
136
137 d = bio->bi_bdev->bd_disk->private_data;
138 buf = mempool_alloc(d->bufpool, GFP_NOIO);
139 if (buf == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400140 printk(KERN_INFO "aoe: buf allocation failure\n");
NeilBrown6712ecf2007-09-27 12:47:43 +0200141 bio_endio(bio, -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return 0;
143 }
144 memset(buf, 0, sizeof(*buf));
145 INIT_LIST_HEAD(&buf->bufs);
ecashin@coraid.com0c6f0e72005-04-18 22:00:22 -0700146 buf->start_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 buf->bio = bio;
148 buf->resid = bio->bi_size;
149 buf->sector = bio->bi_sector;
Ed L. Cashin392e4842006-09-20 14:36:50 -0400150 buf->bv = &bio->bi_io_vec[bio->bi_idx];
151 WARN_ON(buf->bv->bv_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 buf->bv_resid = buf->bv->bv_len;
153 buf->bufaddr = page_address(buf->bv->bv_page) + buf->bv->bv_offset;
154
155 spin_lock_irqsave(&d->lock, flags);
156
157 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400158 printk(KERN_INFO "aoe: device %ld.%ld is not up\n",
159 d->aoemajor, d->aoeminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 spin_unlock_irqrestore(&d->lock, flags);
161 mempool_free(buf, d->bufpool);
NeilBrown6712ecf2007-09-27 12:47:43 +0200162 bio_endio(bio, -ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 return 0;
164 }
165
166 list_add_tail(&buf->bufs, &d->bufq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500168 aoecmd_work(d);
ecashin@coraid.coma4b38362005-04-18 22:00:22 -0700169 sl = d->sendq_hd;
170 d->sendq_hd = d->sendq_tl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 aoenet_xmit(sl);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return 0;
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800179aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800181 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400184 printk(KERN_ERR "aoe: disk not up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return -ENODEV;
186 }
187
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800188 geo->cylinders = d->geo.cylinders;
189 geo->heads = d->geo.heads;
190 geo->sectors = d->geo.sectors;
191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194static struct block_device_operations aoe_bdops = {
195 .open = aoeblk_open,
196 .release = aoeblk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800197 .getgeo = aoeblk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 .owner = THIS_MODULE,
199};
200
201/* alloc_disk and add_disk can sleep */
202void
203aoeblk_gdalloc(void *vp)
204{
205 struct aoedev *d = vp;
206 struct gendisk *gd;
207 ulong flags;
208
209 gd = alloc_disk(AOE_PARTITIONS);
210 if (gd == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400211 printk(KERN_ERR "aoe: cannot allocate disk structure for %ld.%ld\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400212 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800213 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215
Matthew Dobson93d23412006-03-26 01:37:50 -0800216 d->bufpool = mempool_create_slab_pool(MIN_BUFS, buf_pool_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (d->bufpool == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400218 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%ld\n",
Ed L. Cashin6bb62852006-09-20 14:36:49 -0400219 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800220 goto err_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 blk_queue_make_request(&d->blkq, aoeblk_make_request);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800224 if (bdi_init(&d->blkq.backing_dev_info))
225 goto err_mempool;
226 spin_lock_irqsave(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 gd->major = AOE_MAJOR;
228 gd->first_minor = d->sysminor * AOE_PARTITIONS;
229 gd->fops = &aoe_bdops;
230 gd->private_data = d;
231 gd->capacity = d->ssize;
232 snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%ld",
233 d->aoemajor, d->aoeminor);
234
235 gd->queue = &d->blkq;
236 d->gd = gd;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500237 d->flags &= ~DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 d->flags |= DEVFL_UP;
239
240 spin_unlock_irqrestore(&d->lock, flags);
241
242 add_disk(gd);
243 aoedisk_add_sysfs(d);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800244 return;
245
246err_mempool:
247 mempool_destroy(d->bufpool);
248err_disk:
249 put_disk(gd);
250err:
251 spin_lock_irqsave(&d->lock, flags);
252 d->flags &= ~DEVFL_GDALLOC;
253 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256void
257aoeblk_exit(void)
258{
259 kmem_cache_destroy(buf_pool_cache);
260}
261
262int __init
263aoeblk_init(void)
264{
Paul Mundt20c2df82007-07-20 10:11:58 +0900265 buf_pool_cache = kmem_cache_create("aoe_bufs",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 sizeof(struct buf),
Paul Mundt20c2df82007-07-20 10:11:58 +0900267 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (buf_pool_cache == NULL)
269 return -ENOMEM;
270
271 return 0;
272}
273