blob: 7ba0fcf7b06b998472ccafaf55fb0b834fcb6307 [file] [log] [blame]
Ed Cashinfea05a22012-10-04 17:16:38 -07001/* Copyright (c) 2012 Coraid, Inc. See COPYING for GPL terms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * aoeblk.c
4 * block device routines
5 */
6
Andrew Morton027b1802010-10-28 06:15:26 -06007#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/hdreg.h>
9#include <linux/blkdev.h>
Andrew Morton43cbe2c2007-12-10 15:49:13 -080010#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
12#include <linux/ioctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Andrew Morton027b1802010-10-28 06:15:26 -060014#include <linux/ratelimit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/genhd.h>
16#include <linux/netdevice.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020017#include <linux/mutex.h>
Paul Gortmakerd5decd32011-05-26 16:00:52 -040018#include <linux/export.h>
Ed Cashinaa304fd2012-12-17 16:03:32 -080019#include <linux/moduleparam.h>
Ed Cashin667be1e2012-12-17 16:03:42 -080020#include <scsi/sg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "aoe.h"
22
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020023static DEFINE_MUTEX(aoeblk_mutex);
Christoph Lametere18b8902006-12-06 20:33:20 -080024static struct kmem_cache *buf_pool_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ed Cashinaa304fd2012-12-17 16:03:32 -080026/* GPFS needs a larger value than the default. */
27static int aoe_maxsectors;
28module_param(aoe_maxsectors, int, 0644);
29MODULE_PARM_DESC(aoe_maxsectors,
30 "When nonzero, set the maximum number of sectors per I/O request");
31
Kay Sieversedfaa7c2007-05-21 22:08:01 +020032static ssize_t aoedisk_show_state(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;
37
38 return snprintf(page, PAGE_SIZE,
39 "%s%s\n",
40 (d->flags & DEVFL_UP) ? "up" : "down",
Ed L. Cashin68e0d422008-02-08 04:20:00 -080041 (d->flags & DEVFL_KICKME) ? ",kickme" :
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050042 (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
43 /* I'd rather see nopen exported so we can ditch closewait */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020045static ssize_t aoedisk_show_mac(struct device *dev,
46 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020048 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080050 struct aoetgt *t = d->targets[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Ed L. Cashin68e0d422008-02-08 04:20:00 -080052 if (t == NULL)
53 return snprintf(page, PAGE_SIZE, "none\n");
Harvey Harrison411c41e2008-11-25 00:40:37 -080054 return snprintf(page, PAGE_SIZE, "%pm\n", t->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
Kay Sieversedfaa7c2007-05-21 22:08:01 +020056static ssize_t aoedisk_show_netif(struct device *dev,
57 struct device_attribute *attr, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020059 struct gendisk *disk = dev_to_disk(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct aoedev *d = disk->private_data;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080061 struct net_device *nds[8], **nd, **nnd, **ne;
62 struct aoetgt **t, **te;
63 struct aoeif *ifp, *e;
64 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Ed L. Cashin68e0d422008-02-08 04:20:00 -080066 memset(nds, 0, sizeof nds);
67 nd = nds;
68 ne = nd + ARRAY_SIZE(nds);
69 t = d->targets;
70 te = t + NTARGETS;
71 for (; t < te && *t; t++) {
72 ifp = (*t)->ifs;
73 e = ifp + NAOEIFS;
74 for (; ifp < e && ifp->nd; ifp++) {
75 for (nnd = nds; nnd < nd; nnd++)
76 if (*nnd == ifp->nd)
77 break;
78 if (nnd == nd && nd != ne)
79 *nd++ = ifp->nd;
80 }
81 }
82
83 ne = nd;
84 nd = nds;
85 if (*nd == NULL)
86 return snprintf(page, PAGE_SIZE, "none\n");
87 for (p = page; nd < ne; nd++)
88 p += snprintf(p, PAGE_SIZE - (p-page), "%s%s",
89 p == page ? "" : ",", (*nd)->name);
90 p += snprintf(p, PAGE_SIZE - (p-page), "\n");
91 return p-page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
Ed L Cashin4613ed22005-04-29 10:24:25 -040093/* firmware version */
Kay Sieversedfaa7c2007-05-21 22:08:01 +020094static ssize_t aoedisk_show_fwver(struct device *dev,
95 struct device_attribute *attr, char *page)
Ed L Cashin4613ed22005-04-29 10:24:25 -040096{
Kay Sieversedfaa7c2007-05-21 22:08:01 +020097 struct gendisk *disk = dev_to_disk(dev);
Ed L Cashin4613ed22005-04-29 10:24:25 -040098 struct aoedev *d = disk->private_data;
99
100 return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
101}
Ed Cashin90a25082012-12-17 16:03:34 -0800102static ssize_t aoedisk_show_payload(struct device *dev,
103 struct device_attribute *attr, char *page)
104{
105 struct gendisk *disk = dev_to_disk(dev);
106 struct aoedev *d = disk->private_data;
107
108 return snprintf(page, PAGE_SIZE, "%lu\n", d->maxbcnt);
109}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200111static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
112static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
113static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
114static struct device_attribute dev_attr_firmware_version = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700115 .attr = { .name = "firmware-version", .mode = S_IRUGO },
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200116 .show = aoedisk_show_fwver,
Ed L Cashin4613ed22005-04-29 10:24:25 -0400117};
Ed Cashin90a25082012-12-17 16:03:34 -0800118static DEVICE_ATTR(payload, S_IRUGO, aoedisk_show_payload, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -0700120static struct attribute *aoe_attrs[] = {
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200121 &dev_attr_state.attr,
122 &dev_attr_mac.attr,
123 &dev_attr_netif.attr,
124 &dev_attr_firmware_version.attr,
Ed Cashin90a25082012-12-17 16:03:34 -0800125 &dev_attr_payload.attr,
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200126 NULL,
Greg Kroah-Hartman4ca52242002-04-09 12:14:34 -0700127};
128
129static const struct attribute_group attr_group = {
130 .attrs = aoe_attrs,
131};
132
133static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134aoedisk_add_sysfs(struct aoedev *d)
135{
Tejun Heoed9e1982008-08-25 19:56:05 +0900136 return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138void
139aoedisk_rm_sysfs(struct aoedev *d)
140{
Tejun Heoed9e1982008-08-25 19:56:05 +0900141 sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144static int
Al Viro94562c12008-03-02 09:23:18 -0500145aoeblk_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Al Viro94562c12008-03-02 09:23:18 -0500147 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 ulong flags;
149
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200150 mutex_lock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 spin_lock_irqsave(&d->lock, flags);
152 if (d->flags & DEVFL_UP) {
153 d->nopen++;
154 spin_unlock_irqrestore(&d->lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200155 mutex_unlock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 0;
157 }
158 spin_unlock_irqrestore(&d->lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200159 mutex_unlock(&aoeblk_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -ENODEV;
161}
162
163static int
Al Viro94562c12008-03-02 09:23:18 -0500164aoeblk_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Al Viro94562c12008-03-02 09:23:18 -0500166 struct aoedev *d = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ulong flags;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 spin_lock_irqsave(&d->lock, flags);
170
Ed L. Cashin5f7702f2006-01-19 13:46:27 -0500171 if (--d->nopen == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 spin_unlock_irqrestore(&d->lock, flags);
173 aoecmd_cfg(d->aoemajor, d->aoeminor);
174 return 0;
175 }
176 spin_unlock_irqrestore(&d->lock, flags);
177
178 return 0;
179}
180
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200181static void
Ed Cashin69cf2d852012-10-04 17:16:23 -0700182aoeblk_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct aoedev *d;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700185 struct request *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Ed Cashin69cf2d852012-10-04 17:16:23 -0700187 d = q->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if ((d->flags & DEVFL_UP) == 0) {
Andrew Morton027b1802010-10-28 06:15:26 -0600189 pr_info_ratelimited("aoe: device %ld.%d is not up\n",
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400190 d->aoemajor, d->aoeminor);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700191 while ((rq = blk_peek_request(q))) {
192 blk_start_request(rq);
193 aoe_end_request(d, rq, 1);
194 }
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +0200195 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500197 aoecmd_work(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static int
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800201aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800203 struct aoedev *d = bdev->bd_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if ((d->flags & DEVFL_UP) == 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400206 printk(KERN_ERR "aoe: disk not up\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return -ENODEV;
208 }
209
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800210 geo->cylinders = d->geo.cylinders;
211 geo->heads = d->geo.heads;
212 geo->sectors = d->geo.sectors;
213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Ed Cashin667be1e2012-12-17 16:03:42 -0800216static int
217aoeblk_ioctl(struct block_device *bdev, fmode_t mode, uint cmd, ulong arg)
218{
219 struct aoedev *d;
220
221 if (!arg)
222 return -EINVAL;
223
224 d = bdev->bd_disk->private_data;
225 if ((d->flags & DEVFL_UP) == 0) {
226 pr_err("aoe: disk not up\n");
227 return -ENODEV;
228 }
229
230 if (cmd == HDIO_GET_IDENTITY) {
231 if (!copy_to_user((void __user *) arg, &d->ident,
232 sizeof(d->ident)))
233 return 0;
234 return -EFAULT;
235 }
236
237 /* udev calls scsi_id, which uses SG_IO, resulting in noise */
238 if (cmd != SG_IO)
239 pr_info("aoe: unknown ioctl 0x%x\n", cmd);
240
241 return -ENOTTY;
242}
243
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700244static const struct block_device_operations aoe_bdops = {
Al Viro94562c12008-03-02 09:23:18 -0500245 .open = aoeblk_open,
246 .release = aoeblk_release,
Ed Cashin667be1e2012-12-17 16:03:42 -0800247 .ioctl = aoeblk_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800248 .getgeo = aoeblk_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 .owner = THIS_MODULE,
250};
251
252/* alloc_disk and add_disk can sleep */
253void
254aoeblk_gdalloc(void *vp)
255{
256 struct aoedev *d = vp;
257 struct gendisk *gd;
Ed Cashin69cf2d852012-10-04 17:16:23 -0700258 mempool_t *mp;
259 struct request_queue *q;
260 enum { KB = 1024, MB = KB * KB, READ_AHEAD = 2 * MB, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 ulong flags;
262
263 gd = alloc_disk(AOE_PARTITIONS);
264 if (gd == NULL) {
Ed Cashin69cf2d852012-10-04 17:16:23 -0700265 pr_err("aoe: cannot allocate disk structure for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400266 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800267 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
Ed Cashin69cf2d852012-10-04 17:16:23 -0700270 mp = mempool_create(MIN_BUFS, mempool_alloc_slab, mempool_free_slab,
271 buf_pool_cache);
272 if (mp == NULL) {
Ed L. Cashin1d759812008-02-08 04:20:08 -0800273 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
Ed L. Cashin6bb6285f2006-09-20 14:36:49 -0400274 d->aoemajor, d->aoeminor);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800275 goto err_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Ed Cashin69cf2d852012-10-04 17:16:23 -0700277 q = blk_init_queue(aoeblk_request, &d->lock);
278 if (q == NULL) {
279 pr_err("aoe: cannot allocate block queue for %ld.%d\n",
280 d->aoemajor, d->aoeminor);
281 mempool_destroy(mp);
282 goto err_disk;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Ed Cashin7135a71b2009-09-09 14:10:18 +0200285 d->blkq = blk_alloc_queue(GFP_KERNEL);
286 if (!d->blkq)
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800287 goto err_mempool;
Jens Axboed9938312009-06-12 14:45:52 +0200288 d->blkq->backing_dev_info.name = "aoe";
Ed Cashin7135a71b2009-09-09 14:10:18 +0200289 if (bdi_init(&d->blkq->backing_dev_info))
290 goto err_blkq;
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800291 spin_lock_irqsave(&d->lock, flags);
Ed Cashin3d5b0602012-10-04 17:16:20 -0700292 blk_queue_max_hw_sectors(d->blkq, BLK_DEF_MAX_SECTORS);
Ed Cashin69cf2d852012-10-04 17:16:23 -0700293 q->backing_dev_info.ra_pages = READ_AHEAD / PAGE_CACHE_SIZE;
294 d->bufpool = mp;
295 d->blkq = gd->queue = q;
296 q->queuedata = d;
297 d->gd = gd;
Ed Cashinaa304fd2012-12-17 16:03:32 -0800298 if (aoe_maxsectors)
299 blk_queue_max_hw_sectors(q, aoe_maxsectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 gd->major = AOE_MAJOR;
Ed Cashin0c966212012-10-04 17:16:40 -0700301 gd->first_minor = d->sysminor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 gd->fops = &aoe_bdops;
303 gd->private_data = d;
Tejun Heo80795ae2008-08-25 19:56:07 +0900304 set_capacity(gd, d->ssize);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800305 snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 d->aoemajor, d->aoeminor);
307
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500308 d->flags &= ~DEVFL_GDALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 d->flags |= DEVFL_UP;
310
311 spin_unlock_irqrestore(&d->lock, flags);
312
313 add_disk(gd);
314 aoedisk_add_sysfs(d);
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800315 return;
316
Ed Cashin7135a71b2009-09-09 14:10:18 +0200317err_blkq:
318 blk_cleanup_queue(d->blkq);
319 d->blkq = NULL;
Andrew Morton43cbe2c2007-12-10 15:49:13 -0800320err_mempool:
321 mempool_destroy(d->bufpool);
322err_disk:
323 put_disk(gd);
324err:
325 spin_lock_irqsave(&d->lock, flags);
326 d->flags &= ~DEVFL_GDALLOC;
327 spin_unlock_irqrestore(&d->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330void
331aoeblk_exit(void)
332{
333 kmem_cache_destroy(buf_pool_cache);
334}
335
336int __init
337aoeblk_init(void)
338{
Paul Mundt20c2df82007-07-20 10:11:58 +0900339 buf_pool_cache = kmem_cache_create("aoe_bufs",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 sizeof(struct buf),
Paul Mundt20c2df82007-07-20 10:11:58 +0900341 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (buf_pool_cache == NULL)
343 return -ENOMEM;
344
345 return 0;
346}
347