blob: 42e67ad6bd207dabd505c779e131b9465dad3e82 [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 * aoechr.c
4 * AoE character device driver
5 */
6
7#include <linux/hdreg.h>
8#include <linux/blkdev.h>
Matthias Kaehlcke24879a82008-07-25 01:48:38 -07009#include <linux/completion.h>
Ed L. Cashin68e0d422008-02-08 04:20:00 -080010#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020012#include <linux/mutex.h>
David S. Millere9bb8fb2008-09-21 22:36:49 -070013#include <linux/skbuff.h>
Paul Gortmakerd5decd32011-05-26 16:00:52 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "aoe.h"
16
17enum {
18 //MINOR_STAT = 1, (moved to sysfs)
19 MINOR_ERR = 2,
20 MINOR_DISCOVER,
21 MINOR_INTERFACES,
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050022 MINOR_REVALIDATE,
Ed L. Cashin262bf542008-02-08 04:20:03 -080023 MINOR_FLUSH,
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 MSGSZ = 2048,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 NMSG = 100, /* message backlog to retain */
26};
27
28struct aoe_chardev {
29 ulong minor;
30 char name[32];
31};
32
33enum { EMFL_VALID = 1 };
34
35struct ErrMsg {
36 short flags;
37 short len;
38 char *msg;
39};
40
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020041static DEFINE_MUTEX(aoechr_mutex);
Ed Cashin662a8892012-12-17 16:03:26 -080042
43/* A ring buffer of error messages, to be read through
44 * "/dev/etherd/err". When no messages are present,
45 * readers will block waiting for messages to appear.
46 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct ErrMsg emsgs[NMSG];
48static int emsgs_head_idx, emsgs_tail_idx;
Matthias Kaehlcke24879a82008-07-25 01:48:38 -070049static struct completion emsgs_comp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050static spinlock_t emsgs_lock;
51static int nblocked_emsgs_readers;
gregkh@suse.dedeb36972005-03-23 09:52:10 -080052static struct class *aoe_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static struct aoe_chardev chardevs[] = {
54 { MINOR_ERR, "err" },
55 { MINOR_DISCOVER, "discover" },
56 { MINOR_INTERFACES, "interfaces" },
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050057 { MINOR_REVALIDATE, "revalidate" },
Ed L. Cashin262bf542008-02-08 04:20:03 -080058 { MINOR_FLUSH, "flush" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
61static int
62discover(void)
63{
64 aoecmd_cfg(0xffff, 0xff);
65 return 0;
66}
67
68static int
69interfaces(const char __user *str, size_t size)
70{
71 if (set_aoe_iflist(str, size)) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -040072 printk(KERN_ERR
73 "aoe: could not set interface list: too many interfaces\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return -EINVAL;
75 }
76 return 0;
77}
78
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050079static int
80revalidate(const char __user *str, size_t size)
81{
82 int major, minor, n;
83 ulong flags;
84 struct aoedev *d;
Ed L. Cashin68e0d422008-02-08 04:20:00 -080085 struct sk_buff *skb;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050086 char buf[16];
87
88 if (size >= sizeof buf)
89 return -EINVAL;
90 buf[sizeof buf - 1] = '\0';
91 if (copy_from_user(buf, str, size))
92 return -EFAULT;
93
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050094 n = sscanf(buf, "e%d.%d", &major, &minor);
95 if (n != 2) {
Ed Cashin896831f2012-10-04 17:16:21 -070096 pr_err("aoe: invalid device specification %s\n", buf);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -050097 return -EINVAL;
98 }
Ed Cashin0c966212012-10-04 17:16:40 -070099 d = aoedev_by_aoeaddr(major, minor, 0);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500100 if (!d)
101 return -EINVAL;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500102 spin_lock_irqsave(&d->lock, flags);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800103 aoecmd_cleanslate(d);
Ed Cashin25f4d752012-10-04 17:16:31 -0700104 aoecmd_cfg(major, minor);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800105loop:
106 skb = aoecmd_ata_id(d);
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500107 spin_unlock_irqrestore(&d->lock, flags);
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800108 /* try again if we are able to sleep a bit,
109 * otherwise give up this revalidation
110 */
Ed Cashin25f4d752012-10-04 17:16:31 -0700111 if (!skb && !msleep_interruptible(250)) {
Ed L. Cashin68e0d422008-02-08 04:20:00 -0800112 spin_lock_irqsave(&d->lock, flags);
113 goto loop;
114 }
Ed Cashin69cf2d852012-10-04 17:16:23 -0700115 aoedev_put(d);
David S. Millere9bb8fb2008-09-21 22:36:49 -0700116 if (skb) {
117 struct sk_buff_head queue;
118 __skb_queue_head_init(&queue);
119 __skb_queue_tail(&queue, skb);
120 aoenet_xmit(&queue);
121 }
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500122 return 0;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125void
126aoechr_error(char *msg)
127{
128 struct ErrMsg *em;
129 char *mp;
130 ulong flags, n;
131
132 n = strlen(msg);
133
134 spin_lock_irqsave(&emsgs_lock, flags);
135
136 em = emsgs + emsgs_tail_idx;
137 if ((em->flags & EMFL_VALID)) {
138bail: spin_unlock_irqrestore(&emsgs_lock, flags);
139 return;
140 }
141
142 mp = kmalloc(n, GFP_ATOMIC);
143 if (mp == NULL) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400144 printk(KERN_ERR "aoe: allocation failure, len=%ld\n", n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto bail;
146 }
147
148 memcpy(mp, msg, n);
149 em->msg = mp;
150 em->flags |= EMFL_VALID;
151 em->len = n;
152
153 emsgs_tail_idx++;
154 emsgs_tail_idx %= ARRAY_SIZE(emsgs);
155
156 spin_unlock_irqrestore(&emsgs_lock, flags);
157
158 if (nblocked_emsgs_readers)
Matthias Kaehlcke24879a82008-07-25 01:48:38 -0700159 complete(&emsgs_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162static ssize_t
163aoechr_write(struct file *filp, const char __user *buf, size_t cnt, loff_t *offp)
164{
165 int ret = -EINVAL;
166
167 switch ((unsigned long) filp->private_data) {
168 default:
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400169 printk(KERN_INFO "aoe: can't write to that file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 break;
171 case MINOR_DISCOVER:
172 ret = discover();
173 break;
174 case MINOR_INTERFACES:
175 ret = interfaces(buf, cnt);
176 break;
Ed L. Cashin3ae1c242006-01-19 13:46:19 -0500177 case MINOR_REVALIDATE:
178 ret = revalidate(buf, cnt);
Ed L. Cashin262bf542008-02-08 04:20:03 -0800179 break;
180 case MINOR_FLUSH:
181 ret = aoedev_flush(buf, cnt);
Ed Cashinb21faa22012-10-04 17:16:35 -0700182 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 if (ret == 0)
185 ret = cnt;
186 return ret;
187}
188
189static int
190aoechr_open(struct inode *inode, struct file *filp)
191{
192 int n, i;
193
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200194 mutex_lock(&aoechr_mutex);
Eric Sesterhenn2017b372006-07-10 04:45:32 -0700195 n = iminor(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 filp->private_data = (void *) (unsigned long) n;
197
198 for (i = 0; i < ARRAY_SIZE(chardevs); ++i)
Jonathan Corbet579174a2008-05-15 10:03:09 -0600199 if (chardevs[i].minor == n) {
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200200 mutex_unlock(&aoechr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return 0;
Jonathan Corbet579174a2008-05-15 10:03:09 -0600202 }
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200203 mutex_unlock(&aoechr_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return -EINVAL;
205}
206
207static int
208aoechr_rel(struct inode *inode, struct file *filp)
209{
210 return 0;
211}
212
213static ssize_t
214aoechr_read(struct file *filp, char __user *buf, size_t cnt, loff_t *off)
215{
216 unsigned long n;
217 char *mp;
218 struct ErrMsg *em;
219 ssize_t len;
220 ulong flags;
221
222 n = (unsigned long) filp->private_data;
Ed L. Cashincf446f02008-02-08 04:20:03 -0800223 if (n != MINOR_ERR)
224 return -EFAULT;
225
226 spin_lock_irqsave(&emsgs_lock, flags);
227
228 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 em = emsgs + emsgs_head_idx;
Ed L. Cashincf446f02008-02-08 04:20:03 -0800230 if ((em->flags & EMFL_VALID) != 0)
231 break;
232 if (filp->f_flags & O_NDELAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 spin_unlock_irqrestore(&emsgs_lock, flags);
234 return -EAGAIN;
235 }
Ed L. Cashincf446f02008-02-08 04:20:03 -0800236 nblocked_emsgs_readers++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 spin_unlock_irqrestore(&emsgs_lock, flags);
239
Matthias Kaehlcke24879a82008-07-25 01:48:38 -0700240 n = wait_for_completion_interruptible(&emsgs_comp);
Ed L. Cashincf446f02008-02-08 04:20:03 -0800241
242 spin_lock_irqsave(&emsgs_lock, flags);
243
244 nblocked_emsgs_readers--;
245
246 if (n) {
247 spin_unlock_irqrestore(&emsgs_lock, flags);
248 return -ERESTARTSYS;
249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Ed L. Cashincf446f02008-02-08 04:20:03 -0800251 if (em->len > cnt) {
252 spin_unlock_irqrestore(&emsgs_lock, flags);
253 return -EAGAIN;
254 }
255 mp = em->msg;
256 len = em->len;
257 em->msg = NULL;
258 em->flags &= ~EMFL_VALID;
259
260 emsgs_head_idx++;
261 emsgs_head_idx %= ARRAY_SIZE(emsgs);
262
263 spin_unlock_irqrestore(&emsgs_lock, flags);
264
265 n = copy_to_user(buf, mp, len);
266 kfree(mp);
267 return n == 0 ? len : -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800270static const struct file_operations aoe_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .write = aoechr_write,
272 .read = aoechr_read,
273 .open = aoechr_open,
274 .release = aoechr_rel,
275 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200276 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
Al Viro2c9ede52011-07-23 20:24:48 -0400279static char *aoe_devnode(struct device *dev, umode_t *mode)
Kay Sievers1ce8a0d2009-04-30 15:23:42 +0200280{
281 return kasprintf(GFP_KERNEL, "etherd/%s", dev_name(dev));
282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284int __init
285aoechr_init(void)
286{
287 int n, i;
288
289 n = register_chrdev(AOE_MAJOR, "aoechr", &aoe_fops);
Ed Cashina04b41c2012-12-17 16:03:39 -0800290 if (n < 0) {
Ed L. Cashina12c93f2006-09-20 14:36:51 -0400291 printk(KERN_ERR "aoe: can't register char device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return n;
293 }
Matthias Kaehlcke24879a82008-07-25 01:48:38 -0700294 init_completion(&emsgs_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 spin_lock_init(&emsgs_lock);
gregkh@suse.dedeb36972005-03-23 09:52:10 -0800296 aoe_class = class_create(THIS_MODULE, "aoe");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (IS_ERR(aoe_class)) {
298 unregister_chrdev(AOE_MAJOR, "aoechr");
299 return PTR_ERR(aoe_class);
300 }
Kay Sieverse454cea2009-09-18 23:01:12 +0200301 aoe_class->devnode = aoe_devnode;
Kay Sievers1ce8a0d2009-04-30 15:23:42 +0200302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 for (i = 0; i < ARRAY_SIZE(chardevs); ++i)
Greg Kroah-Hartman1ff9f542008-07-21 20:03:34 -0700304 device_create(aoe_class, NULL,
305 MKDEV(AOE_MAJOR, chardevs[i].minor), NULL,
306 chardevs[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 return 0;
309}
310
311void
312aoechr_exit(void)
313{
314 int i;
315
316 for (i = 0; i < ARRAY_SIZE(chardevs); ++i)
Tony Jones7ea7ed02007-09-25 02:03:03 +0200317 device_destroy(aoe_class, MKDEV(AOE_MAJOR, chardevs[i].minor));
gregkh@suse.dedeb36972005-03-23 09:52:10 -0800318 class_destroy(aoe_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 unregister_chrdev(AOE_MAJOR, "aoechr");
320}
321