]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/block/aoe/aoeblk.c
aoe: provide ATA identify device content to user on request
[karo-tx-linux.git] / drivers / block / aoe / aoeblk.c
1 /* Copyright (c) 2012 Coraid, Inc.  See COPYING for GPL terms. */
2 /*
3  * aoeblk.c
4  * block device routines
5  */
6
7 #include <linux/kernel.h>
8 #include <linux/hdreg.h>
9 #include <linux/blkdev.h>
10 #include <linux/backing-dev.h>
11 #include <linux/fs.h>
12 #include <linux/ioctl.h>
13 #include <linux/slab.h>
14 #include <linux/ratelimit.h>
15 #include <linux/genhd.h>
16 #include <linux/netdevice.h>
17 #include <linux/mutex.h>
18 #include <linux/export.h>
19 #include <linux/moduleparam.h>
20 #include <scsi/sg.h>
21 #include "aoe.h"
22
23 static DEFINE_MUTEX(aoeblk_mutex);
24 static struct kmem_cache *buf_pool_cache;
25
26 /* GPFS needs a larger value than the default. */
27 static int aoe_maxsectors;
28 module_param(aoe_maxsectors, int, 0644);
29 MODULE_PARM_DESC(aoe_maxsectors,
30         "When nonzero, set the maximum number of sectors per I/O request");
31
32 static ssize_t aoedisk_show_state(struct device *dev,
33                                   struct device_attribute *attr, char *page)
34 {
35         struct gendisk *disk = dev_to_disk(dev);
36         struct aoedev *d = disk->private_data;
37
38         return snprintf(page, PAGE_SIZE,
39                         "%s%s\n",
40                         (d->flags & DEVFL_UP) ? "up" : "down",
41                         (d->flags & DEVFL_KICKME) ? ",kickme" :
42                         (d->nopen && !(d->flags & DEVFL_UP)) ? ",closewait" : "");
43         /* I'd rather see nopen exported so we can ditch closewait */
44 }
45 static ssize_t aoedisk_show_mac(struct device *dev,
46                                 struct device_attribute *attr, char *page)
47 {
48         struct gendisk *disk = dev_to_disk(dev);
49         struct aoedev *d = disk->private_data;
50         struct aoetgt *t = d->targets[0];
51
52         if (t == NULL)
53                 return snprintf(page, PAGE_SIZE, "none\n");
54         return snprintf(page, PAGE_SIZE, "%pm\n", t->addr);
55 }
56 static ssize_t aoedisk_show_netif(struct device *dev,
57                                   struct device_attribute *attr, char *page)
58 {
59         struct gendisk *disk = dev_to_disk(dev);
60         struct aoedev *d = disk->private_data;
61         struct net_device *nds[8], **nd, **nnd, **ne;
62         struct aoetgt **t, **te;
63         struct aoeif *ifp, *e;
64         char *p;
65
66         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;
92 }
93 /* firmware version */
94 static ssize_t aoedisk_show_fwver(struct device *dev,
95                                   struct device_attribute *attr, char *page)
96 {
97         struct gendisk *disk = dev_to_disk(dev);
98         struct aoedev *d = disk->private_data;
99
100         return snprintf(page, PAGE_SIZE, "0x%04x\n", (unsigned int) d->fw_ver);
101 }
102 static 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 }
110
111 static DEVICE_ATTR(state, S_IRUGO, aoedisk_show_state, NULL);
112 static DEVICE_ATTR(mac, S_IRUGO, aoedisk_show_mac, NULL);
113 static DEVICE_ATTR(netif, S_IRUGO, aoedisk_show_netif, NULL);
114 static struct device_attribute dev_attr_firmware_version = {
115         .attr = { .name = "firmware-version", .mode = S_IRUGO },
116         .show = aoedisk_show_fwver,
117 };
118 static DEVICE_ATTR(payload, S_IRUGO, aoedisk_show_payload, NULL);
119
120 static struct attribute *aoe_attrs[] = {
121         &dev_attr_state.attr,
122         &dev_attr_mac.attr,
123         &dev_attr_netif.attr,
124         &dev_attr_firmware_version.attr,
125         &dev_attr_payload.attr,
126         NULL,
127 };
128
129 static const struct attribute_group attr_group = {
130         .attrs = aoe_attrs,
131 };
132
133 static int
134 aoedisk_add_sysfs(struct aoedev *d)
135 {
136         return sysfs_create_group(&disk_to_dev(d->gd)->kobj, &attr_group);
137 }
138 void
139 aoedisk_rm_sysfs(struct aoedev *d)
140 {
141         sysfs_remove_group(&disk_to_dev(d->gd)->kobj, &attr_group);
142 }
143
144 static int
145 aoeblk_open(struct block_device *bdev, fmode_t mode)
146 {
147         struct aoedev *d = bdev->bd_disk->private_data;
148         ulong flags;
149
150         mutex_lock(&aoeblk_mutex);
151         spin_lock_irqsave(&d->lock, flags);
152         if (d->flags & DEVFL_UP) {
153                 d->nopen++;
154                 spin_unlock_irqrestore(&d->lock, flags);
155                 mutex_unlock(&aoeblk_mutex);
156                 return 0;
157         }
158         spin_unlock_irqrestore(&d->lock, flags);
159         mutex_unlock(&aoeblk_mutex);
160         return -ENODEV;
161 }
162
163 static int
164 aoeblk_release(struct gendisk *disk, fmode_t mode)
165 {
166         struct aoedev *d = disk->private_data;
167         ulong flags;
168
169         spin_lock_irqsave(&d->lock, flags);
170
171         if (--d->nopen == 0) {
172                 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
181 static void
182 aoeblk_request(struct request_queue *q)
183 {
184         struct aoedev *d;
185         struct request *rq;
186
187         d = q->queuedata;
188         if ((d->flags & DEVFL_UP) == 0) {
189                 pr_info_ratelimited("aoe: device %ld.%d is not up\n",
190                         d->aoemajor, d->aoeminor);
191                 while ((rq = blk_peek_request(q))) {
192                         blk_start_request(rq);
193                         aoe_end_request(d, rq, 1);
194                 }
195                 return;
196         }
197         aoecmd_work(d);
198 }
199
200 static int
201 aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
202 {
203         struct aoedev *d = bdev->bd_disk->private_data;
204
205         if ((d->flags & DEVFL_UP) == 0) {
206                 printk(KERN_ERR "aoe: disk not up\n");
207                 return -ENODEV;
208         }
209
210         geo->cylinders = d->geo.cylinders;
211         geo->heads = d->geo.heads;
212         geo->sectors = d->geo.sectors;
213         return 0;
214 }
215
216 static int
217 aoeblk_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
244 static const struct block_device_operations aoe_bdops = {
245         .open = aoeblk_open,
246         .release = aoeblk_release,
247         .ioctl = aoeblk_ioctl,
248         .getgeo = aoeblk_getgeo,
249         .owner = THIS_MODULE,
250 };
251
252 /* alloc_disk and add_disk can sleep */
253 void
254 aoeblk_gdalloc(void *vp)
255 {
256         struct aoedev *d = vp;
257         struct gendisk *gd;
258         mempool_t *mp;
259         struct request_queue *q;
260         enum { KB = 1024, MB = KB * KB, READ_AHEAD = 2 * MB, };
261         ulong flags;
262
263         gd = alloc_disk(AOE_PARTITIONS);
264         if (gd == NULL) {
265                 pr_err("aoe: cannot allocate disk structure for %ld.%d\n",
266                         d->aoemajor, d->aoeminor);
267                 goto err;
268         }
269
270         mp = mempool_create(MIN_BUFS, mempool_alloc_slab, mempool_free_slab,
271                 buf_pool_cache);
272         if (mp == NULL) {
273                 printk(KERN_ERR "aoe: cannot allocate bufpool for %ld.%d\n",
274                         d->aoemajor, d->aoeminor);
275                 goto err_disk;
276         }
277         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         }
284
285         d->blkq = blk_alloc_queue(GFP_KERNEL);
286         if (!d->blkq)
287                 goto err_mempool;
288         d->blkq->backing_dev_info.name = "aoe";
289         if (bdi_init(&d->blkq->backing_dev_info))
290                 goto err_blkq;
291         spin_lock_irqsave(&d->lock, flags);
292         blk_queue_max_hw_sectors(d->blkq, BLK_DEF_MAX_SECTORS);
293         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;
298         if (aoe_maxsectors)
299                 blk_queue_max_hw_sectors(q, aoe_maxsectors);
300         gd->major = AOE_MAJOR;
301         gd->first_minor = d->sysminor;
302         gd->fops = &aoe_bdops;
303         gd->private_data = d;
304         set_capacity(gd, d->ssize);
305         snprintf(gd->disk_name, sizeof gd->disk_name, "etherd/e%ld.%d",
306                 d->aoemajor, d->aoeminor);
307
308         d->flags &= ~DEVFL_GDALLOC;
309         d->flags |= DEVFL_UP;
310
311         spin_unlock_irqrestore(&d->lock, flags);
312
313         add_disk(gd);
314         aoedisk_add_sysfs(d);
315         return;
316
317 err_blkq:
318         blk_cleanup_queue(d->blkq);
319         d->blkq = NULL;
320 err_mempool:
321         mempool_destroy(d->bufpool);
322 err_disk:
323         put_disk(gd);
324 err:
325         spin_lock_irqsave(&d->lock, flags);
326         d->flags &= ~DEVFL_GDALLOC;
327         spin_unlock_irqrestore(&d->lock, flags);
328 }
329
330 void
331 aoeblk_exit(void)
332 {
333         kmem_cache_destroy(buf_pool_cache);
334 }
335
336 int __init
337 aoeblk_init(void)
338 {
339         buf_pool_cache = kmem_cache_create("aoe_bufs",
340                                            sizeof(struct buf),
341                                            0, 0, NULL);
342         if (buf_pool_cache == NULL)
343                 return -ENOMEM;
344
345         return 0;
346 }
347