blob: 035cefe4045ae76f076f3d56a85b058c3bb68fc7 [file] [log] [blame]
Ed L. Cashin52e112b2008-02-08 04:20:09 -08001/* Copyright (c) 2007 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/genhd.h>
14#include <linux/netdevice.h>
15#include "aoe.h"
16
Christoph Lametere18b8902006-12-06 20:33:20 -080017static struct kmem_cache *buf_pool_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Kay Sieversedfaa7c2007-05-21 22:08:01 +020019static ssize_t aoedisk_show_state(struct device *dev,
20 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020022 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 struct aoedev *d = disk->private_data;
24
25 return snprintf(page, PAGE_SIZE,
26 "%s%s\n",
27 (d->flags & DEVFL_UP) ? "up" : "down",
Ed L. Cashin68e0d422008-02-08 04:20:00 -080028 (d->flags & DEVFL_KICKME) ? ",kickme" :
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050029 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
30 /* I'd rather see nopen exported so we can ditch closewait */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020032static ssize_t aoedisk_show_mac(struct device *dev,
33 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020035 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080037 struct aoetgt *t = d->targets[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ed L. Cashin68e0d422008-02-08 04:20:00 -080039 if (t == NULL)
40 return snprintf(page, PAGE_SIZE, "none\n");
Harvey Harrison411c41e2008-11-25 00:40:37 -080041 return snprintf(page, PAGE_SIZE, "%pm\n", t->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020043static ssize_t aoedisk_show_netif(struct device *dev,
44 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020046 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080048 struct net_device *nds[8], **nd, **nnd, **ne;
49 struct aoetgt **t, **te;
50 struct aoeif *ifp, *e;
51 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Ed L. Cashin68e0d422008-02-08 04:20:00 -080053 memset(nds, 0, sizeof nds);
54 nd = nds;
55 ne = nd + ARRAY_SIZE(nds);
56 t = d->targets;
57 te = t + NTARGETS;
58 for (; t < te && *t; t++) {
59 ifp = (*t)->ifs;
60 e = ifp + NAOEIFS;
61 for (; ifp < e && ifp->nd; ifp++) {
62 for (nnd = nds; nnd < nd; nnd++)
63 if (*nnd == ifp->nd)
64 break;
65 if (nnd == nd && nd != ne)
66 *nd++ = ifp->nd;
67 }
68 }
69
70 ne = nd;
71 nd = nds;
72 if (*nd == NULL)
73 return snprintf(page, PAGE_SIZE, "none\n");
74 for (p = page; nd < ne; nd++)
75 p += snprintf(p, PAGE_SIZE - (p-page), "%s%s",
76 p == page ? "" : ",", (*nd)->name);
77 p += snprintf(p, PAGE_SIZE - (p-page), "\n");
78 return p-page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
Ed L Cashin4613ed22005-04-29 10:24:25 -040080/* firmware version */
Kay Sieversedfaa7c2007-05-21 22:08:01 +020081static ssize_t aoedisk_show_fwver(struct device *dev,
82 struct device_attribute *attr, char *page)
Ed L Cashin4613ed22005-04-29 10:24:25 -040083{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020084 struct gendisk *disk = dev_to_disk(dev);
Ed L Cashin4613ed22005-04-29 10:24:25 -040085 struct aoedev *d = disk->private_data;
86
87 return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
88}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Kay Sieversedfaa7c2007-05-21 22:08:01 +020090static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
91static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
92static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
93static struct device_attribute dev_attr_firmware_version = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -070094 .attr = { .name = "firmware-version", .mode = S_IRUGO },
Kay Sieversedfaa7c2007-05-21 22:08:01 +020095 .show = aoedisk_show_fwver,
Ed L Cashin4613ed22005-04-29 10:24:25 -040096};
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -070098static struct attribute *aoe_attrs[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +020099 &dev_attr_state.attr,
100 &dev_attr_mac.attr,
101 &dev_attr_netif.attr,
102 &dev_attr_firmware_version.attr,
103 NULL,
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -0700104};
105
106static const struct attribute_group attr_group = {
107 .attrs = aoe_attrs,
108};
109
110static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111aoedisk_add_sysfs(struct aoedev *d)
112{
Tejun Heoed9e1982008-08-25 19:56:05 +0900113 return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115void
116aoedisk_rm_sysfs(struct aoedev *d)
117{
Tejun Heoed9e1982008-08-25 19:56:05 +0900118 sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static int
Al Viro94562c12008-03-02 09:23:18 -0500122aoeblk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Al Viro94562c12008-03-02 09:23:18 -0500124 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 ulong flags;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 spin_lock_irqsave(&d->lock, flags);
128 if (d->flags & DEVFL_UP) {
129 d->nopen++;
130 spin_unlock_irqrestore(&d->lock, flags);
131 return 0;
132 }
133 spin_unlock_irqrestore(&d->lock, flags);
134 return -ENODEV;
135}
136
137static int
Al Viro94562c12008-03-02 09:23:18 -0500138aoeblk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Al Viro94562c12008-03-02 09:23:18 -0500140 struct aoedev *d = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 ulong flags;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 spin_lock_irqsave(&d->lock, flags);
144
Ed L. Cashin5f7702f2006-01-19 13:46:27 -0500145 if (--d->nopen == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 spin_unlock_irqrestore(&d->lock, flags);
147 aoecmd_cfg(d->aoemajor, d->aoeminor);
148 return 0;
149 }
150 spin_unlock_irqrestore(&d->lock, flags);
151
152 return 0;
153}
154
155static int
Jens Axboe165125e2007-07-24 09:28:11 +0200156aoeblk_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
David S. Millere9bb8fb2008-09-21 22:36:49 -0700158 struct sk_buff_head queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct aoedev *d;
160 struct buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 ulong flags;
162
163 blk_queue_bounce(q, &bio);
164
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800165 if (bio == NULL) {
166 printk(KERN_ERR "aoe: bio is NULL\n");
167 BUG();
168 return 0;
169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 d = bio->bi_bdev->bd_disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800171 if (d == NULL) {
172 printk(KERN_ERR "aoe: bd_disk->private_data is NULL\n");
173 BUG();
174 bio_endio(bio, -ENXIO);
175 return 0;
Ed Cashin18d82172009-09-10 22:30:47 +0200176 } else if (bio_rw_flagged(bio, BIO_RW_BARRIER)) {
177 bio_endio(bio, -EOPNOTSUPP);
178 return 0;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800179 } else if (bio->bi_io_vec == NULL) {
180 printk(KERN_ERR "aoe: bi_io_vec is NULL\n");
181 BUG();
182 bio_endio(bio, -ENXIO);
183 return 0;
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 buf = mempool_alloc(d->bufpool, GFP_NOIO);
186 if (buf == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400187 printk(KERN_INFO "aoe: buf allocation failure\n");
NeilBrown6712ecf2007-09-27 12:47:43 +0200188 bio_endio(bio, -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return 0;
190 }
191 memset(buf, 0, sizeof(*buf));
192 INIT_LIST_HEAD(&buf->bufs);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800193 buf->stime = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 buf->bio = bio;
195 buf->resid = bio->bi_size;
196 buf->sector = bio->bi_sector;
Ed L. Cashin392e4842006-09-20 14:36:50 -0400197 buf->bv = &bio->bi_io_vec[bio->bi_idx];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 buf->bv_resid = buf->bv->bv_len;
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800199 WARN_ON(buf->bv_resid == 0);
200 buf->bv_off = buf->bv->bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 spin_lock_irqsave(&d->lock, flags);
203
204 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashin1d759812008-02-08 04:20:08 -0800205 printk(KERN_INFO "aoe: device %ld.%d is not up\n",
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400206 d->aoemajor, d->aoeminor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 spin_unlock_irqrestore(&d->lock, flags);
208 mempool_free(buf, d->bufpool);
NeilBrown6712ecf2007-09-27 12:47:43 +0200209 bio_endio(bio, -ENXIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return 0;
211 }
212
213 list_add_tail(&buf->bufs, &d->bufq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500215 aoecmd_work(d);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700216 __skb_queue_head_init(&queue);
217 skb_queue_splice_init(&d->sendq, &queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 spin_unlock_irqrestore(&d->lock, flags);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700220 aoenet_xmit(&queue);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800226aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800228 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400231 printk(KERN_ERR "aoe: disk not up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -ENODEV;
233 }
234
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800235 geo->cylinders = d->geo.cylinders;
236 geo->heads = d->geo.heads;
237 geo->sectors = d->geo.sectors;
238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700241static const struct block_device_operations aoe_bdops = {
Al Viro94562c12008-03-02 09:23:18 -0500242 .open = aoeblk_open,
243 .release = aoeblk_release,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800244 .getgeo = aoeblk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .owner = THIS_MODULE,
246};
247
248/* alloc_disk and add_disk can sleep */
249void
250aoeblk_gdalloc(void *vp)
251{
252 struct aoedev *d = vp;
253 struct gendisk *gd;
254 ulong flags;
255
256 gd = alloc_disk(AOE_PARTITIONS);
257 if (gd == NULL) {
Ed L. Cashin1d759812008-02-08 04:20:08 -0800258 printk(KERN_ERR
259 "aoe: cannot allocate disk structure for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400260 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800261 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
Matthew Dobson93d23412006-03-26 01:37:50 -0800264 d->bufpool = mempool_create_slab_pool(MIN_BUFS, buf_pool_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (d->bufpool == NULL) {
Ed L. Cashin1d759812008-02-08 04:20:08 -0800266 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400267 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800268 goto err_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270
Ed Cashin7135a71b2009-09-09 14:10:18 +0200271 d->blkq = blk_alloc_queue(GFP_KERNEL);
272 if (!d->blkq)
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800273 goto err_mempool;
Ed Cashin7135a71b2009-09-09 14:10:18 +0200274 blk_queue_make_request(d->blkq, aoeblk_make_request);
Jens Axboed9938312009-06-12 14:45:52 +0200275 d->blkq->backing_dev_info.name = "aoe";
Ed Cashin7135a71b2009-09-09 14:10:18 +0200276 if (bdi_init(&d->blkq->backing_dev_info))
277 goto err_blkq;
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800278 spin_lock_irqsave(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 gd->major = AOE_MAJOR;
280 gd->first_minor = d->sysminor * AOE_PARTITIONS;
281 gd->fops = &aoe_bdops;
282 gd->private_data = d;
Tejun Heo80795ae2008-08-25 19:56:07 +0900283 set_capacity(gd, d->ssize);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800284 snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 d->aoemajor, d->aoeminor);
286
Ed Cashin7135a71b2009-09-09 14:10:18 +0200287 gd->queue = d->blkq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 d->gd = gd;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500289 d->flags &= ~DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 d->flags |= DEVFL_UP;
291
292 spin_unlock_irqrestore(&d->lock, flags);
293
294 add_disk(gd);
295 aoedisk_add_sysfs(d);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800296 return;
297
Ed Cashin7135a71b2009-09-09 14:10:18 +0200298err_blkq:
299 blk_cleanup_queue(d->blkq);
300 d->blkq = NULL;
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800301err_mempool:
302 mempool_destroy(d->bufpool);
303err_disk:
304 put_disk(gd);
305err:
306 spin_lock_irqsave(&d->lock, flags);
307 d->flags &= ~DEVFL_GDALLOC;
308 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311void
312aoeblk_exit(void)
313{
314 kmem_cache_destroy(buf_pool_cache);
315}
316
317int __init
318aoeblk_init(void)
319{
Paul Mundt20c2df82007-07-20 10:11:58 +0900320 buf_pool_cache = kmem_cache_create("aoe_bufs",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 sizeof(struct buf),
Paul Mundt20c2df82007-07-20 10:11:58 +0900322 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (buf_pool_cache == NULL)
324 return -ENOMEM;
325
326 return 0;
327}
328