1 /* Copyright (c) 2013 Coraid, Inc. See COPYING for GPL terms. */
4 * AoE device utility functions; maintains device list.
7 #include <linux/hdreg.h>
8 #include <linux/blk-mq.h>
9 #include <linux/netdevice.h>
10 #include <linux/delay.h>
11 #include <linux/slab.h>
12 #include <linux/bitmap.h>
13 #include <linux/kdev_t.h>
14 #include <linux/moduleparam.h>
15 #include <linux/string.h>
18 static void freetgt(struct aoedev *d, struct aoetgt *t);
19 static void skbpoolfree(struct aoedev *d);
21 static int aoe_dyndevs = 1;
22 module_param(aoe_dyndevs, int, 0644);
23 MODULE_PARM_DESC(aoe_dyndevs, "Use dynamic minor numbers for devices.");
25 static struct aoedev *devlist;
26 static DEFINE_SPINLOCK(devlist_lock);
28 /* Because some systems will have one, many, or no
32 * we need some flexibility in the way the minor numbers
33 * are allocated. So they are dynamic.
35 #define N_DEVS ((1U<<MINORBITS)/AOE_PARTITIONS)
37 static DEFINE_SPINLOCK(used_minors_lock);
38 static DECLARE_BITMAP(used_minors, N_DEVS);
41 minor_get_dyn(ulong *sysminor)
47 spin_lock_irqsave(&used_minors_lock, flags);
48 n = find_first_zero_bit(used_minors, N_DEVS);
50 set_bit(n, used_minors);
53 spin_unlock_irqrestore(&used_minors_lock, flags);
55 *sysminor = n * AOE_PARTITIONS;
60 minor_get_static(ulong *sysminor, ulong aoemaj, int aoemin)
66 /* for backwards compatibility when !aoe_dyndevs,
67 * a static number of supported slots per shelf */
71 if (aoemin >= NPERSHELF) {
72 pr_err("aoe: %s %d slots per shelf\n",
73 "static minor device numbers support only",
79 n = aoemaj * NPERSHELF + aoemin;
81 pr_err("aoe: %s with e%ld.%d\n",
82 "cannot use static minor device numbers",
88 spin_lock_irqsave(&used_minors_lock, flags);
89 if (test_bit(n, used_minors)) {
90 pr_err("aoe: %s %lu\n",
91 "existing device already has static minor number",
95 set_bit(n, used_minors);
96 spin_unlock_irqrestore(&used_minors_lock, flags);
97 *sysminor = n * AOE_PARTITIONS;
103 minor_get(ulong *sysminor, ulong aoemaj, int aoemin)
106 return minor_get_dyn(sysminor);
108 return minor_get_static(sysminor, aoemaj, aoemin);
112 minor_free(ulong minor)
116 minor /= AOE_PARTITIONS;
117 BUG_ON(minor >= N_DEVS);
119 spin_lock_irqsave(&used_minors_lock, flags);
120 BUG_ON(!test_bit(minor, used_minors));
121 clear_bit(minor, used_minors);
122 spin_unlock_irqrestore(&used_minors_lock, flags);
126 * Users who grab a pointer to the device with aoedev_by_aoeaddr
127 * automatically get a reference count and must be responsible
128 * for performing a aoedev_put. With the addition of async
129 * kthread processing I'm no longer confident that we can
130 * guarantee consistency in the face of device flushes.
132 * For the time being, we only bother to add extra references for
133 * frames sitting on the iocq. When the kthreads finish processing
134 * these frames, they will aoedev_put the device.
138 aoedev_put(struct aoedev *d)
142 spin_lock_irqsave(&devlist_lock, flags);
144 spin_unlock_irqrestore(&devlist_lock, flags);
148 dummy_timer(struct timer_list *t)
152 d = from_timer(d, t, timer);
153 if (d->flags & DEVFL_TKILL)
155 d->timer.expires = jiffies + HZ;
156 add_timer(&d->timer);
160 aoe_failip(struct aoedev *d)
166 aoe_failbuf(d, d->ip.buf);
171 req = blk_mq_rq_to_pdu(rq);
172 while ((bio = d->ip.nxbio)) {
173 bio->bi_status = BLK_STS_IOERR;
174 d->ip.nxbio = bio->bi_next;
179 aoe_end_request(d, rq, 0);
183 downdev_frame(struct list_head *pos)
187 f = list_entry(pos, struct frame, head);
190 f->buf->nframesout--;
191 aoe_failbuf(f->t->d, f->buf);
197 aoedev_downdev(struct aoedev *d)
199 struct aoetgt *t, **tt, **te;
200 struct list_head *head, *pos, *nx;
203 d->flags &= ~DEVFL_UP;
205 /* clean out active and to-be-retransmitted buffers */
206 for (i = 0; i < NFACTIVE; i++) {
207 head = &d->factive[i];
208 list_for_each_safe(pos, nx, head)
212 list_for_each_safe(pos, nx, head)
215 /* reset window dressings */
217 te = tt + d->ntargets;
218 for (; tt < te && (t = *tt); tt++) {
223 /* clean out the in-process request (if any) */
226 /* fast fail all pending I/O */
228 /* UP is cleared, freeze+quiesce to insure all are errored */
229 blk_mq_freeze_queue(d->blkq);
230 blk_mq_quiesce_queue(d->blkq);
231 blk_mq_unquiesce_queue(d->blkq);
232 blk_mq_unfreeze_queue(d->blkq);
236 set_capacity(d->gd, 0);
239 /* return whether the user asked for this particular
240 * device to be flushed
243 user_req(char *s, size_t slen, struct aoedev *d)
250 p = kbasename(d->gd->disk_name);
251 lim = sizeof(d->gd->disk_name);
252 lim -= p - d->gd->disk_name;
256 return !strncmp(s, p, lim);
260 freedev(struct aoedev *d)
262 struct aoetgt **t, **e;
266 spin_lock_irqsave(&d->lock, flags);
267 if (d->flags & DEVFL_TKILL
268 && !(d->flags & DEVFL_FREEING)) {
269 d->flags |= DEVFL_FREEING;
272 spin_unlock_irqrestore(&d->lock, flags);
276 del_timer_sync(&d->timer);
278 aoedisk_rm_debugfs(d);
280 blk_cleanup_disk(d->gd);
281 blk_mq_free_tag_set(&d->tag_set);
285 for (; t < e && *t; t++)
288 mempool_destroy(d->bufpool);
290 minor_free(d->sysminor);
292 spin_lock_irqsave(&d->lock, flags);
293 d->flags |= DEVFL_FREED;
294 spin_unlock_irqrestore(&d->lock, flags);
303 flush(const char __user *str, size_t cnt, int exiting)
306 struct aoedev *d, **dd;
309 int specified = 0; /* flush a specific device */
310 unsigned int skipflags;
312 skipflags = DEVFL_GDALLOC | DEVFL_NEWSIZE | DEVFL_TKILL;
314 if (!exiting && cnt >= 3) {
315 if (cnt > sizeof buf)
317 if (copy_from_user(buf, str, cnt))
319 all = !strncmp(buf, "all", 3);
324 flush_scheduled_work();
325 /* pass one: do aoedev_downdev, which might sleep */
327 spin_lock_irqsave(&devlist_lock, flags);
328 for (d = devlist; d; d = d->next) {
330 if (d->flags & DEVFL_TKILL)
334 /* unconditionally take each device down */
335 } else if (specified) {
336 if (!user_req(buf, cnt, d))
338 } else if ((!all && (d->flags & DEVFL_UP))
339 || d->flags & skipflags
344 spin_unlock(&d->lock);
345 spin_unlock_irqrestore(&devlist_lock, flags);
347 d->flags |= DEVFL_TKILL;
350 spin_unlock(&d->lock);
352 spin_unlock_irqrestore(&devlist_lock, flags);
354 /* pass two: call freedev, which might sleep,
355 * for aoedevs marked with DEVFL_TKILL
358 spin_lock_irqsave(&devlist_lock, flags);
359 for (d = devlist; d; d = d->next) {
361 if (d->flags & DEVFL_TKILL
362 && !(d->flags & DEVFL_FREEING)) {
363 spin_unlock(&d->lock);
364 spin_unlock_irqrestore(&devlist_lock, flags);
368 spin_unlock(&d->lock);
371 /* pass three: remove aoedevs marked with DEVFL_FREED */
372 for (dd = &devlist, d = *dd; d; d = *dd) {
373 struct aoedev *doomed = NULL;
376 if (d->flags & DEVFL_FREED) {
382 spin_unlock(&d->lock);
384 kfree(doomed->targets);
387 spin_unlock_irqrestore(&devlist_lock, flags);
393 aoedev_flush(const char __user *str, size_t cnt)
395 return flush(str, cnt, NOT_EXITING);
398 /* This has been confirmed to occur once with Tms=3*1000 due to the
399 * driver changing link and not processing its transmit ring. The
400 * problem is hard enough to solve by returning an error that I'm
401 * still punting on "solving" this.
404 skbfree(struct sk_buff *skb)
406 enum { Sms = 250, Tms = 30 * 1000};
411 while (atomic_read(&skb_shinfo(skb)->dataref) != 1 && i-- > 0)
415 "aoe: %s holds ref: %s\n",
416 skb->dev ? skb->dev->name : "netif",
417 "cannot free skb -- memory leaked.");
420 skb->truesize -= skb->data_len;
421 skb_shinfo(skb)->nr_frags = skb->data_len = 0;
427 skbpoolfree(struct aoedev *d)
429 struct sk_buff *skb, *tmp;
431 skb_queue_walk_safe(&d->skbpool, skb, tmp)
434 __skb_queue_head_init(&d->skbpool);
437 /* find it or allocate it */
439 aoedev_by_aoeaddr(ulong maj, int min, int do_alloc)
446 spin_lock_irqsave(&devlist_lock, flags);
448 for (d=devlist; d; d=d->next)
449 if (d->aoemajor == maj && d->aoeminor == min) {
451 if (d->flags & DEVFL_TKILL) {
452 spin_unlock(&d->lock);
457 spin_unlock(&d->lock);
460 if (d || !do_alloc || minor_get(&sysminor, maj, min) < 0)
462 d = kcalloc(1, sizeof *d, GFP_ATOMIC);
465 d->targets = kcalloc(NTARGETS, sizeof(*d->targets), GFP_ATOMIC);
471 d->ntargets = NTARGETS;
472 INIT_WORK(&d->work, aoecmd_sleepwork);
473 spin_lock_init(&d->lock);
474 INIT_LIST_HEAD(&d->rq_list);
475 skb_queue_head_init(&d->skbpool);
476 timer_setup(&d->timer, dummy_timer, 0);
477 d->timer.expires = jiffies + HZ;
478 add_timer(&d->timer);
479 d->bufpool = NULL; /* defer to aoeblk_gdalloc */
482 for (i = 0; i < NFACTIVE; i++)
483 INIT_LIST_HEAD(&d->factive[i]);
484 INIT_LIST_HEAD(&d->rexmitq);
485 d->sysminor = sysminor;
488 d->rttavg = RTTAVG_INIT;
489 d->rttdev = RTTDEV_INIT;
493 spin_unlock_irqrestore(&devlist_lock, flags);
498 freetgt(struct aoedev *d, struct aoetgt *t)
501 struct list_head *pos, *nx, *head;
504 for (ifp = t->ifs; ifp < &t->ifs[NAOEIFS]; ++ifp) {
511 list_for_each_safe(pos, nx, head) {
513 f = list_entry(pos, struct frame, head);
523 flush_scheduled_work();
524 flush(NULL, 0, EXITING);