block: make generic_make_request handle arbitrarily sized bios
[cascardo/linux.git] / drivers / staging / lustre / lustre / llite / lloop.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 /*
38  *  linux/drivers/block/loop.c
39  *
40  *  Written by Theodore Ts'o, 3/29/93
41  *
42  * Copyright 1993 by Theodore Ts'o.  Redistribution of this file is
43  * permitted under the GNU General Public License.
44  *
45  * Modularized and updated for 1.1.16 kernel - Mitch Dsouza 28th May 1994
46  * Adapted for 1.3.59 kernel - Andries Brouwer, 1 Feb 1996
47  *
48  * Fixed do_loop_request() re-entrancy - Vincent.Renardias@waw.com Mar 20, 1997
49  *
50  * Added devfs support - Richard Gooch <rgooch@atnf.csiro.au> 16-Jan-1998
51  *
52  * Handle sparse backing files correctly - Kenn Humborg, Jun 28, 1998
53  *
54  * Loadable modules and other fixes by AK, 1998
55  *
56  * Maximum number of loop devices now dynamic via max_loop module parameter.
57  * Russell Kroll <rkroll@exploits.org> 19990701
58  *
59  * Maximum number of loop devices when compiled-in now selectable by passing
60  * max_loop=<1-255> to the kernel on boot.
61  * Erik I. Bols?, <eriki@himolde.no>, Oct 31, 1999
62  *
63  * Completely rewrite request handling to be make_request_fn style and
64  * non blocking, pushing work to a helper thread. Lots of fixes from
65  * Al Viro too.
66  * Jens Axboe <axboe@suse.de>, Nov 2000
67  *
68  * Support up to 256 loop devices
69  * Heinz Mauelshagen <mge@sistina.com>, Feb 2002
70  *
71  * Support for falling back on the write file operation when the address space
72  * operations prepare_write and/or commit_write are not available on the
73  * backing filesystem.
74  * Anton Altaparmakov, 16 Feb 2005
75  *
76  * Still To Fix:
77  * - Advisory locking is ignored here.
78  * - Should use an own CAP_* category instead of CAP_SYS_ADMIN
79  *
80  */
81
82 #include <linux/module.h>
83
84 #include <linux/sched.h>
85 #include <linux/fs.h>
86 #include <linux/file.h>
87 #include <linux/stat.h>
88 #include <linux/errno.h>
89 #include <linux/major.h>
90 #include <linux/wait.h>
91 #include <linux/blkdev.h>
92 #include <linux/blkpg.h>
93 #include <linux/init.h>
94 #include <linux/swap.h>
95 #include <linux/slab.h>
96 #include <linux/suspend.h>
97 #include <linux/writeback.h>
98 #include <linux/buffer_head.h>          /* for invalidate_bdev() */
99 #include <linux/completion.h>
100 #include <linux/highmem.h>
101 #include <linux/gfp.h>
102 #include <linux/pagevec.h>
103 #include <linux/uaccess.h>
104
105 #include "../include/lustre_lib.h"
106 #include "../include/lustre_lite.h"
107 #include "llite_internal.h"
108
109 #define LLOOP_MAX_SEGMENTS      LNET_MAX_IOV
110
111 /* Possible states of device */
112 enum {
113         LLOOP_UNBOUND,
114         LLOOP_BOUND,
115         LLOOP_RUNDOWN,
116 };
117
118 struct lloop_device {
119         int               lo_number;
120         int               lo_refcnt;
121         loff_t         lo_offset;
122         loff_t         lo_sizelimit;
123         int               lo_flags;
124         struct file      *lo_backing_file;
125         struct block_device *lo_device;
126         unsigned             lo_blocksize;
127
128         gfp_t             old_gfp_mask;
129
130         spinlock_t              lo_lock;
131         struct bio              *lo_bio;
132         struct bio              *lo_biotail;
133         int                     lo_state;
134         struct semaphore        lo_sem;
135         struct mutex            lo_ctl_mutex;
136         atomic_t         lo_pending;
137         wait_queue_head_t         lo_bh_wait;
138
139         struct request_queue *lo_queue;
140
141         const struct lu_env *lo_env;
142         struct cl_io     lo_io;
143         struct ll_dio_pages  lo_pvec;
144
145         /* data to handle bio for lustre. */
146         struct lo_request_data {
147                 struct page *lrd_pages[LLOOP_MAX_SEGMENTS];
148                 loff_t       lrd_offsets[LLOOP_MAX_SEGMENTS];
149         } lo_requests[1];
150 };
151
152 /*
153  * Loop flags
154  */
155 enum {
156         LO_FLAGS_READ_ONLY       = 1,
157 };
158
159 static int lloop_major;
160 #define MAX_LOOP_DEFAULT  16
161 static int max_loop = MAX_LOOP_DEFAULT;
162 static struct lloop_device *loop_dev;
163 static struct gendisk **disks;
164 static struct mutex lloop_mutex;
165 static void *ll_iocontrol_magic = NULL;
166
167 static loff_t get_loop_size(struct lloop_device *lo, struct file *file)
168 {
169         loff_t size, offset, loopsize;
170
171         /* Compute loopsize in bytes */
172         size = i_size_read(file->f_mapping->host);
173         offset = lo->lo_offset;
174         loopsize = size - offset;
175         if (lo->lo_sizelimit > 0 && lo->lo_sizelimit < loopsize)
176                 loopsize = lo->lo_sizelimit;
177
178         /*
179          * Unfortunately, if we want to do I/O on the device,
180          * the number of 512-byte sectors has to fit into a sector_t.
181          */
182         return loopsize >> 9;
183 }
184
185 static int do_bio_lustrebacked(struct lloop_device *lo, struct bio *head)
186 {
187         const struct lu_env  *env   = lo->lo_env;
188         struct cl_io     *io    = &lo->lo_io;
189         struct inode     *inode = file_inode(lo->lo_backing_file);
190         struct cl_object     *obj = ll_i2info(inode)->lli_clob;
191         pgoff_t        offset;
192         int                ret;
193         int                rw;
194         u32                page_count = 0;
195         struct bio_vec       bvec;
196         struct bvec_iter   iter;
197         struct bio         *bio;
198         ssize_t        bytes;
199
200         struct ll_dio_pages  *pvec = &lo->lo_pvec;
201         struct page      **pages = pvec->ldp_pages;
202         loff_t         *offsets = pvec->ldp_offsets;
203
204         truncate_inode_pages(inode->i_mapping, 0);
205
206         /* initialize the IO */
207         memset(io, 0, sizeof(*io));
208         io->ci_obj = obj;
209         ret = cl_io_init(env, io, CIT_MISC, obj);
210         if (ret)
211                 return io->ci_result;
212         io->ci_lockreq = CILR_NEVER;
213
214         LASSERT(head != NULL);
215         rw = head->bi_rw;
216         for (bio = head; bio != NULL; bio = bio->bi_next) {
217                 LASSERT(rw == bio->bi_rw);
218
219                 offset = (pgoff_t)(bio->bi_iter.bi_sector << 9) + lo->lo_offset;
220                 bio_for_each_segment(bvec, bio, iter) {
221                         BUG_ON(bvec.bv_offset != 0);
222                         BUG_ON(bvec.bv_len != PAGE_CACHE_SIZE);
223
224                         pages[page_count] = bvec.bv_page;
225                         offsets[page_count] = offset;
226                         page_count++;
227                         offset += bvec.bv_len;
228                 }
229                 LASSERT(page_count <= LLOOP_MAX_SEGMENTS);
230         }
231
232         ll_stats_ops_tally(ll_i2sbi(inode),
233                         (rw == WRITE) ? LPROC_LL_BRW_WRITE : LPROC_LL_BRW_READ,
234                         page_count);
235
236         pvec->ldp_size = page_count << PAGE_CACHE_SHIFT;
237         pvec->ldp_nr = page_count;
238
239         /* FIXME: in ll_direct_rw_pages, it has to allocate many cl_page{}s to
240          * write those pages into OST. Even worse case is that more pages
241          * would be asked to write out to swap space, and then finally get here
242          * again.
243          * Unfortunately this is NOT easy to fix.
244          * Thoughts on solution:
245          * 0. Define a reserved pool for cl_pages, which could be a list of
246          *    pre-allocated cl_pages;
247          * 1. Define a new operation in cl_object_operations{}, says clo_depth,
248          *    which measures how many layers for this lustre object. Generally
249          *    speaking, the depth would be 2, one for llite, and one for lovsub.
250          *    However, for SNS, there will be more since we need additional page
251          *    to store parity;
252          * 2. Reserve the # of (page_count * depth) cl_pages from the reserved
253          *    pool. Afterwards, the clio would allocate the pages from reserved
254          *    pool, this guarantees we needn't allocate the cl_pages from
255          *    generic cl_page slab cache.
256          *    Of course, if there is NOT enough pages in the pool, we might
257          *    be asked to write less pages once, this purely depends on
258          *    implementation. Anyway, we should be careful to avoid deadlocking.
259          */
260         mutex_lock(&inode->i_mutex);
261         bytes = ll_direct_rw_pages(env, io, rw, inode, pvec);
262         mutex_unlock(&inode->i_mutex);
263         cl_io_fini(env, io);
264         return (bytes == pvec->ldp_size) ? 0 : (int)bytes;
265 }
266
267 /*
268  * Add bio to back of pending list
269  */
270 static void loop_add_bio(struct lloop_device *lo, struct bio *bio)
271 {
272         unsigned long flags;
273
274         spin_lock_irqsave(&lo->lo_lock, flags);
275         if (lo->lo_biotail) {
276                 lo->lo_biotail->bi_next = bio;
277                 lo->lo_biotail = bio;
278         } else
279                 lo->lo_bio = lo->lo_biotail = bio;
280         spin_unlock_irqrestore(&lo->lo_lock, flags);
281
282         atomic_inc(&lo->lo_pending);
283         if (waitqueue_active(&lo->lo_bh_wait))
284                 wake_up(&lo->lo_bh_wait);
285 }
286
287 /*
288  * Grab first pending buffer
289  */
290 static unsigned int loop_get_bio(struct lloop_device *lo, struct bio **req)
291 {
292         struct bio *first;
293         struct bio **bio;
294         unsigned int count = 0;
295         unsigned int page_count = 0;
296         int rw;
297
298         spin_lock_irq(&lo->lo_lock);
299         first = lo->lo_bio;
300         if (unlikely(first == NULL)) {
301                 spin_unlock_irq(&lo->lo_lock);
302                 return 0;
303         }
304
305         /* TODO: need to split the bio, too bad. */
306         LASSERT(first->bi_vcnt <= LLOOP_MAX_SEGMENTS);
307
308         rw = first->bi_rw;
309         bio = &lo->lo_bio;
310         while (*bio && (*bio)->bi_rw == rw) {
311                 CDEBUG(D_INFO, "bio sector %llu size %u count %u vcnt%u \n",
312                        (unsigned long long)(*bio)->bi_iter.bi_sector,
313                        (*bio)->bi_iter.bi_size,
314                        page_count, (*bio)->bi_vcnt);
315                 if (page_count + (*bio)->bi_vcnt > LLOOP_MAX_SEGMENTS)
316                         break;
317
318
319                 page_count += (*bio)->bi_vcnt;
320                 count++;
321                 bio = &(*bio)->bi_next;
322         }
323         if (*bio) {
324                 /* Some of bios can't be mergeable. */
325                 lo->lo_bio = *bio;
326                 *bio = NULL;
327         } else {
328                 /* Hit the end of queue */
329                 lo->lo_biotail = NULL;
330                 lo->lo_bio = NULL;
331         }
332         *req = first;
333         spin_unlock_irq(&lo->lo_lock);
334         return count;
335 }
336
337 static void loop_make_request(struct request_queue *q, struct bio *old_bio)
338 {
339         struct lloop_device *lo = q->queuedata;
340         int rw = bio_rw(old_bio);
341         int inactive;
342
343         blk_queue_split(q, &old_bio, q->bio_split);
344
345         if (!lo)
346                 goto err;
347
348         CDEBUG(D_INFO, "submit bio sector %llu size %u\n",
349                (unsigned long long)old_bio->bi_iter.bi_sector,
350                old_bio->bi_iter.bi_size);
351
352         spin_lock_irq(&lo->lo_lock);
353         inactive = lo->lo_state != LLOOP_BOUND;
354         spin_unlock_irq(&lo->lo_lock);
355         if (inactive)
356                 goto err;
357
358         if (rw == WRITE) {
359                 if (lo->lo_flags & LO_FLAGS_READ_ONLY)
360                         goto err;
361         } else if (rw == READA) {
362                 rw = READ;
363         } else if (rw != READ) {
364                 CERROR("lloop: unknown command (%x)\n", rw);
365                 goto err;
366         }
367         loop_add_bio(lo, old_bio);
368         return;
369 err:
370         cfs_bio_io_error(old_bio, old_bio->bi_iter.bi_size);
371 }
372
373
374 static inline void loop_handle_bio(struct lloop_device *lo, struct bio *bio)
375 {
376         int ret;
377         ret = do_bio_lustrebacked(lo, bio);
378         while (bio) {
379                 struct bio *tmp = bio->bi_next;
380                 bio->bi_next = NULL;
381                 cfs_bio_endio(bio, bio->bi_iter.bi_size, ret);
382                 bio = tmp;
383         }
384 }
385
386 static inline int loop_active(struct lloop_device *lo)
387 {
388         return atomic_read(&lo->lo_pending) ||
389                 (lo->lo_state == LLOOP_RUNDOWN);
390 }
391
392 /*
393  * worker thread that handles reads/writes to file backed loop devices,
394  * to avoid blocking in our make_request_fn.
395  */
396 static int loop_thread(void *data)
397 {
398         struct lloop_device *lo = data;
399         struct bio *bio;
400         unsigned int count;
401         unsigned long times = 0;
402         unsigned long total_count = 0;
403
404         struct lu_env *env;
405         int refcheck;
406         int ret = 0;
407
408         set_user_nice(current, MIN_NICE);
409
410         lo->lo_state = LLOOP_BOUND;
411
412         env = cl_env_get(&refcheck);
413         if (IS_ERR(env)) {
414                 ret = PTR_ERR(env);
415                 goto out;
416         }
417
418         lo->lo_env = env;
419         memset(&lo->lo_pvec, 0, sizeof(lo->lo_pvec));
420         lo->lo_pvec.ldp_pages   = lo->lo_requests[0].lrd_pages;
421         lo->lo_pvec.ldp_offsets = lo->lo_requests[0].lrd_offsets;
422
423         /*
424          * up sem, we are running
425          */
426         up(&lo->lo_sem);
427
428         for (;;) {
429                 wait_event(lo->lo_bh_wait, loop_active(lo));
430                 if (!atomic_read(&lo->lo_pending)) {
431                         int exiting = 0;
432                         spin_lock_irq(&lo->lo_lock);
433                         exiting = (lo->lo_state == LLOOP_RUNDOWN);
434                         spin_unlock_irq(&lo->lo_lock);
435                         if (exiting)
436                                 break;
437                 }
438
439                 bio = NULL;
440                 count = loop_get_bio(lo, &bio);
441                 if (!count) {
442                         CWARN("lloop(minor: %d): missing bio\n", lo->lo_number);
443                         continue;
444                 }
445
446                 total_count += count;
447                 if (total_count < count) {     /* overflow */
448                         total_count = count;
449                         times = 1;
450                 } else {
451                         times++;
452                 }
453                 if ((times & 127) == 0) {
454                         CDEBUG(D_INFO, "total: %lu, count: %lu, avg: %lu\n",
455                                total_count, times, total_count / times);
456                 }
457
458                 LASSERT(bio != NULL);
459                 LASSERT(count <= atomic_read(&lo->lo_pending));
460                 loop_handle_bio(lo, bio);
461                 atomic_sub(count, &lo->lo_pending);
462         }
463         cl_env_put(env, &refcheck);
464
465 out:
466         up(&lo->lo_sem);
467         return ret;
468 }
469
470 static int loop_set_fd(struct lloop_device *lo, struct file *unused,
471                        struct block_device *bdev, struct file *file)
472 {
473         struct inode     *inode;
474         struct address_space *mapping;
475         int                lo_flags = 0;
476         int                error;
477         loff_t          size;
478
479         if (!try_module_get(THIS_MODULE))
480                 return -ENODEV;
481
482         error = -EBUSY;
483         if (lo->lo_state != LLOOP_UNBOUND)
484                 goto out;
485
486         mapping = file->f_mapping;
487         inode = mapping->host;
488
489         error = -EINVAL;
490         if (!S_ISREG(inode->i_mode) || inode->i_sb->s_magic != LL_SUPER_MAGIC)
491                 goto out;
492
493         if (!(file->f_mode & FMODE_WRITE))
494                 lo_flags |= LO_FLAGS_READ_ONLY;
495
496         size = get_loop_size(lo, file);
497
498         if ((loff_t)(sector_t)size != size) {
499                 error = -EFBIG;
500                 goto out;
501         }
502
503         /* remove all pages in cache so as dirty pages not to be existent. */
504         truncate_inode_pages(mapping, 0);
505
506         set_device_ro(bdev, (lo_flags & LO_FLAGS_READ_ONLY) != 0);
507
508         lo->lo_blocksize = PAGE_CACHE_SIZE;
509         lo->lo_device = bdev;
510         lo->lo_flags = lo_flags;
511         lo->lo_backing_file = file;
512         lo->lo_sizelimit = 0;
513         lo->old_gfp_mask = mapping_gfp_mask(mapping);
514         mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
515
516         lo->lo_bio = lo->lo_biotail = NULL;
517
518         /*
519          * set queue make_request_fn, and add limits based on lower level
520          * device
521          */
522         blk_queue_make_request(lo->lo_queue, loop_make_request);
523         lo->lo_queue->queuedata = lo;
524
525         /* queue parameters */
526         CLASSERT(PAGE_CACHE_SIZE < (1 << (sizeof(unsigned short) * 8)));
527         blk_queue_logical_block_size(lo->lo_queue,
528                                      (unsigned short)PAGE_CACHE_SIZE);
529         blk_queue_max_hw_sectors(lo->lo_queue,
530                                  LLOOP_MAX_SEGMENTS << (PAGE_CACHE_SHIFT - 9));
531         blk_queue_max_segments(lo->lo_queue, LLOOP_MAX_SEGMENTS);
532
533         set_capacity(disks[lo->lo_number], size);
534         bd_set_size(bdev, size << 9);
535
536         set_blocksize(bdev, lo->lo_blocksize);
537
538         kthread_run(loop_thread, lo, "lloop%d", lo->lo_number);
539         down(&lo->lo_sem);
540         return 0;
541
542 out:
543         /* This is safe: open() is still holding a reference. */
544         module_put(THIS_MODULE);
545         return error;
546 }
547
548 static int loop_clr_fd(struct lloop_device *lo, struct block_device *bdev,
549                        int count)
550 {
551         struct file *filp = lo->lo_backing_file;
552         gfp_t gfp = lo->old_gfp_mask;
553
554         if (lo->lo_state != LLOOP_BOUND)
555                 return -ENXIO;
556
557         if (lo->lo_refcnt > count)      /* we needed one fd for the ioctl */
558                 return -EBUSY;
559
560         if (filp == NULL)
561                 return -EINVAL;
562
563         spin_lock_irq(&lo->lo_lock);
564         lo->lo_state = LLOOP_RUNDOWN;
565         spin_unlock_irq(&lo->lo_lock);
566         wake_up(&lo->lo_bh_wait);
567
568         down(&lo->lo_sem);
569         lo->lo_backing_file = NULL;
570         lo->lo_device = NULL;
571         lo->lo_offset = 0;
572         lo->lo_sizelimit = 0;
573         lo->lo_flags = 0;
574         invalidate_bdev(bdev);
575         set_capacity(disks[lo->lo_number], 0);
576         bd_set_size(bdev, 0);
577         mapping_set_gfp_mask(filp->f_mapping, gfp);
578         lo->lo_state = LLOOP_UNBOUND;
579         fput(filp);
580         /* This is safe: open() is still holding a reference. */
581         module_put(THIS_MODULE);
582         return 0;
583 }
584
585 static int lo_open(struct block_device *bdev, fmode_t mode)
586 {
587         struct lloop_device *lo = bdev->bd_disk->private_data;
588
589         mutex_lock(&lo->lo_ctl_mutex);
590         lo->lo_refcnt++;
591         mutex_unlock(&lo->lo_ctl_mutex);
592
593         return 0;
594 }
595
596 static void lo_release(struct gendisk *disk, fmode_t mode)
597 {
598         struct lloop_device *lo = disk->private_data;
599
600         mutex_lock(&lo->lo_ctl_mutex);
601         --lo->lo_refcnt;
602         mutex_unlock(&lo->lo_ctl_mutex);
603 }
604
605 /* lloop device node's ioctl function. */
606 static int lo_ioctl(struct block_device *bdev, fmode_t mode,
607                     unsigned int cmd, unsigned long arg)
608 {
609         struct lloop_device *lo = bdev->bd_disk->private_data;
610         struct inode *inode = NULL;
611         int err = 0;
612
613         mutex_lock(&lloop_mutex);
614         switch (cmd) {
615         case LL_IOC_LLOOP_DETACH: {
616                 err = loop_clr_fd(lo, bdev, 2);
617                 if (err == 0)
618                         blkdev_put(bdev, 0); /* grabbed in LLOOP_ATTACH */
619                 break;
620         }
621
622         case LL_IOC_LLOOP_INFO: {
623                 struct lu_fid fid;
624
625                 if (lo->lo_backing_file == NULL) {
626                         err = -ENOENT;
627                         break;
628                 }
629                 if (inode == NULL)
630                         inode = file_inode(lo->lo_backing_file);
631                 if (lo->lo_state == LLOOP_BOUND)
632                         fid = ll_i2info(inode)->lli_fid;
633                 else
634                         fid_zero(&fid);
635
636                 if (copy_to_user((struct lu_fid *)arg, &fid, sizeof(fid)))
637                         err = -EFAULT;
638                 break;
639         }
640
641         default:
642                 err = -EINVAL;
643                 break;
644         }
645         mutex_unlock(&lloop_mutex);
646
647         return err;
648 }
649
650 static struct block_device_operations lo_fops = {
651         .owner =        THIS_MODULE,
652         .open =  lo_open,
653         .release =      lo_release,
654         .ioctl =        lo_ioctl,
655 };
656
657 /* dynamic iocontrol callback.
658  * This callback is registered in lloop_init and will be called by
659  * ll_iocontrol_call.
660  *
661  * This is a llite regular file ioctl function. It takes the responsibility
662  * of attaching or detaching a file by a lloop's device number.
663  */
664 static enum llioc_iter lloop_ioctl(struct inode *unused, struct file *file,
665                                    unsigned int cmd, unsigned long arg,
666                                    void *magic, int *rcp)
667 {
668         struct lloop_device *lo = NULL;
669         struct block_device *bdev = NULL;
670         int err = 0;
671         dev_t dev;
672
673         if (magic != ll_iocontrol_magic)
674                 return LLIOC_CONT;
675
676         if (disks == NULL) {
677                 err = -ENODEV;
678                 goto out1;
679         }
680
681         CWARN("Enter llop_ioctl\n");
682
683         mutex_lock(&lloop_mutex);
684         switch (cmd) {
685         case LL_IOC_LLOOP_ATTACH: {
686                 struct lloop_device *lo_free = NULL;
687                 int i;
688
689                 for (i = 0; i < max_loop; i++, lo = NULL) {
690                         lo = &loop_dev[i];
691                         if (lo->lo_state == LLOOP_UNBOUND) {
692                                 if (!lo_free)
693                                         lo_free = lo;
694                                 continue;
695                         }
696                         if (file_inode(lo->lo_backing_file) == file_inode(file))
697                                 break;
698                 }
699                 if (lo || !lo_free) {
700                         err = -EBUSY;
701                         goto out;
702                 }
703
704                 lo = lo_free;
705                 dev = MKDEV(lloop_major, lo->lo_number);
706
707                 /* quit if the used pointer is writable */
708                 if (put_user((long)old_encode_dev(dev), (long *)arg)) {
709                         err = -EFAULT;
710                         goto out;
711                 }
712
713                 bdev = blkdev_get_by_dev(dev, file->f_mode, NULL);
714                 if (IS_ERR(bdev)) {
715                         err = PTR_ERR(bdev);
716                         goto out;
717                 }
718
719                 get_file(file);
720                 err = loop_set_fd(lo, NULL, bdev, file);
721                 if (err) {
722                         fput(file);
723                         blkdev_put(bdev, 0);
724                 }
725
726                 break;
727         }
728
729         case LL_IOC_LLOOP_DETACH_BYDEV: {
730                 int minor;
731
732                 dev = old_decode_dev(arg);
733                 if (MAJOR(dev) != lloop_major) {
734                         err = -EINVAL;
735                         goto out;
736                 }
737
738                 minor = MINOR(dev);
739                 if (minor > max_loop - 1) {
740                         err = -EINVAL;
741                         goto out;
742                 }
743
744                 lo = &loop_dev[minor];
745                 if (lo->lo_state != LLOOP_BOUND) {
746                         err = -EINVAL;
747                         goto out;
748                 }
749
750                 bdev = lo->lo_device;
751                 err = loop_clr_fd(lo, bdev, 1);
752                 if (err == 0)
753                         blkdev_put(bdev, 0); /* grabbed in LLOOP_ATTACH */
754
755                 break;
756         }
757
758         default:
759                 err = -EINVAL;
760                 break;
761         }
762
763 out:
764         mutex_unlock(&lloop_mutex);
765 out1:
766         if (rcp)
767                 *rcp = err;
768         return LLIOC_STOP;
769 }
770
771 static int __init lloop_init(void)
772 {
773         int     i;
774         unsigned int cmdlist[] = {
775                 LL_IOC_LLOOP_ATTACH,
776                 LL_IOC_LLOOP_DETACH_BYDEV,
777         };
778
779         if (max_loop < 1 || max_loop > 256) {
780                 max_loop = MAX_LOOP_DEFAULT;
781                 CWARN("lloop: invalid max_loop (must be between 1 and 256), using default (%u)\n",
782                       max_loop);
783         }
784
785         lloop_major = register_blkdev(0, "lloop");
786         if (lloop_major < 0)
787                 return -EIO;
788
789         CDEBUG(D_CONFIG, "registered lloop major %d with %u minors\n",
790                lloop_major, max_loop);
791
792         ll_iocontrol_magic = ll_iocontrol_register(lloop_ioctl, 2, cmdlist);
793         if (ll_iocontrol_magic == NULL)
794                 goto out_mem1;
795
796         loop_dev = kcalloc(max_loop, sizeof(*loop_dev), GFP_KERNEL);
797         if (!loop_dev)
798                 goto out_mem1;
799
800         disks = kcalloc(max_loop, sizeof(*disks), GFP_KERNEL);
801         if (!disks)
802                 goto out_mem2;
803
804         for (i = 0; i < max_loop; i++) {
805                 disks[i] = alloc_disk(1);
806                 if (!disks[i])
807                         goto out_mem3;
808         }
809
810         mutex_init(&lloop_mutex);
811
812         for (i = 0; i < max_loop; i++) {
813                 struct lloop_device *lo = &loop_dev[i];
814                 struct gendisk *disk = disks[i];
815
816                 lo->lo_queue = blk_alloc_queue(GFP_KERNEL);
817                 if (!lo->lo_queue)
818                         goto out_mem4;
819
820                 mutex_init(&lo->lo_ctl_mutex);
821                 sema_init(&lo->lo_sem, 0);
822                 init_waitqueue_head(&lo->lo_bh_wait);
823                 lo->lo_number = i;
824                 spin_lock_init(&lo->lo_lock);
825                 disk->major = lloop_major;
826                 disk->first_minor = i;
827                 disk->fops = &lo_fops;
828                 sprintf(disk->disk_name, "lloop%d", i);
829                 disk->private_data = lo;
830                 disk->queue = lo->lo_queue;
831         }
832
833         /* We cannot fail after we call this, so another loop!*/
834         for (i = 0; i < max_loop; i++)
835                 add_disk(disks[i]);
836         return 0;
837
838 out_mem4:
839         while (i--)
840                 blk_cleanup_queue(loop_dev[i].lo_queue);
841         i = max_loop;
842 out_mem3:
843         while (i--)
844                 put_disk(disks[i]);
845         kfree(disks);
846 out_mem2:
847         kfree(loop_dev);
848 out_mem1:
849         unregister_blkdev(lloop_major, "lloop");
850         ll_iocontrol_unregister(ll_iocontrol_magic);
851         CERROR("lloop: ran out of memory\n");
852         return -ENOMEM;
853 }
854
855 static void lloop_exit(void)
856 {
857         int i;
858
859         ll_iocontrol_unregister(ll_iocontrol_magic);
860         for (i = 0; i < max_loop; i++) {
861                 del_gendisk(disks[i]);
862                 blk_cleanup_queue(loop_dev[i].lo_queue);
863                 put_disk(disks[i]);
864         }
865
866         unregister_blkdev(lloop_major, "lloop");
867
868         kfree(disks);
869         kfree(loop_dev);
870 }
871
872 module_init(lloop_init);
873 module_exit(lloop_exit);
874
875 module_param(max_loop, int, 0444);
876 MODULE_PARM_DESC(max_loop, "maximum of lloop_device");
877 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
878 MODULE_DESCRIPTION("Lustre virtual block device");
879 MODULE_LICENSE("GPL");