blob: 68b0471ad5a64e52a2b53135ab58523507fb700d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/block/loop.c
3 *
4 * Written by Theodore Ts'o, 3/29/93
5 *
6 * Copyright 1993 by Theodore Ts'o. Redistribution of this file is
7 * permitted under the GNU General Public License.
8 *
9 * DES encryption plus some minor changes by Werner Almesberger, 30-MAY-1993
10 * more DES encryption plus IDEA encryption by Nicholas J. Leon, June 20, 1996
11 *
12 * Modularized and updated for 1.1.16 kernel - Mitch Dsouza 28th May 1994
13 * Adapted for 1.3.59 kernel - Andries Brouwer, 1 Feb 1996
14 *
15 * Fixed do_loop_request() re-entrancy - Vincent.Renardias@waw.com Mar 20, 1997
16 *
17 * Added devfs support - Richard Gooch <rgooch@atnf.csiro.au> 16-Jan-1998
18 *
19 * Handle sparse backing files correctly - Kenn Humborg, Jun 28, 1998
20 *
21 * Loadable modules and other fixes by AK, 1998
22 *
23 * Make real block number available to downstream transfer functions, enables
24 * CBC (and relatives) mode encryption requiring unique IVs per data block.
25 * Reed H. Petty, rhp@draper.net
26 *
27 * Maximum number of loop devices now dynamic via max_loop module parameter.
28 * Russell Kroll <rkroll@exploits.org> 19990701
29 *
30 * Maximum number of loop devices when compiled-in now selectable by passing
31 * max_loop=<1-255> to the kernel on boot.
32 * Erik I. Bolsø, <eriki@himolde.no>, Oct 31, 1999
33 *
34 * Completely rewrite request handling to be make_request_fn style and
35 * non blocking, pushing work to a helper thread. Lots of fixes from
36 * Al Viro too.
37 * Jens Axboe <axboe@suse.de>, Nov 2000
38 *
39 * Support up to 256 loop devices
40 * Heinz Mauelshagen <mge@sistina.com>, Feb 2002
41 *
42 * Support for falling back on the write file operation when the address space
43 * operations prepare_write and/or commit_write are not available on the
44 * backing filesystem.
45 * Anton Altaparmakov, 16 Feb 2005
46 *
47 * Still To Fix:
48 * - Advisory locking is ignored here.
49 * - Should use an own CAP_* category instead of CAP_SYS_ADMIN
50 *
51 */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <linux/module.h>
54#include <linux/moduleparam.h>
55#include <linux/sched.h>
56#include <linux/fs.h>
57#include <linux/file.h>
58#include <linux/stat.h>
59#include <linux/errno.h>
60#include <linux/major.h>
61#include <linux/wait.h>
62#include <linux/blkdev.h>
63#include <linux/blkpg.h>
64#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#include <linux/smp_lock.h>
66#include <linux/swap.h>
67#include <linux/slab.h>
68#include <linux/loop.h>
69#include <linux/suspend.h>
70#include <linux/writeback.h>
71#include <linux/buffer_head.h> /* for invalidate_bdev() */
72#include <linux/completion.h>
73#include <linux/highmem.h>
74#include <linux/gfp.h>
Serge E. Hallyn6c997912006-09-29 01:59:11 -070075#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#include <asm/uaccess.h>
78
79static int max_loop = 8;
80static struct loop_device *loop_dev;
81static struct gendisk **disks;
82
83/*
84 * Transfer functions
85 */
86static int transfer_none(struct loop_device *lo, int cmd,
87 struct page *raw_page, unsigned raw_off,
88 struct page *loop_page, unsigned loop_off,
89 int size, sector_t real_block)
90{
91 char *raw_buf = kmap_atomic(raw_page, KM_USER0) + raw_off;
92 char *loop_buf = kmap_atomic(loop_page, KM_USER1) + loop_off;
93
94 if (cmd == READ)
95 memcpy(loop_buf, raw_buf, size);
96 else
97 memcpy(raw_buf, loop_buf, size);
98
99 kunmap_atomic(raw_buf, KM_USER0);
100 kunmap_atomic(loop_buf, KM_USER1);
101 cond_resched();
102 return 0;
103}
104
105static int transfer_xor(struct loop_device *lo, int cmd,
106 struct page *raw_page, unsigned raw_off,
107 struct page *loop_page, unsigned loop_off,
108 int size, sector_t real_block)
109{
110 char *raw_buf = kmap_atomic(raw_page, KM_USER0) + raw_off;
111 char *loop_buf = kmap_atomic(loop_page, KM_USER1) + loop_off;
112 char *in, *out, *key;
113 int i, keysize;
114
115 if (cmd == READ) {
116 in = raw_buf;
117 out = loop_buf;
118 } else {
119 in = loop_buf;
120 out = raw_buf;
121 }
122
123 key = lo->lo_encrypt_key;
124 keysize = lo->lo_encrypt_key_size;
125 for (i = 0; i < size; i++)
126 *out++ = *in++ ^ key[(i & 511) % keysize];
127
128 kunmap_atomic(raw_buf, KM_USER0);
129 kunmap_atomic(loop_buf, KM_USER1);
130 cond_resched();
131 return 0;
132}
133
134static int xor_init(struct loop_device *lo, const struct loop_info64 *info)
135{
136 if (unlikely(info->lo_encrypt_key_size <= 0))
137 return -EINVAL;
138 return 0;
139}
140
141static struct loop_func_table none_funcs = {
142 .number = LO_CRYPT_NONE,
143 .transfer = transfer_none,
144};
145
146static struct loop_func_table xor_funcs = {
147 .number = LO_CRYPT_XOR,
148 .transfer = transfer_xor,
149 .init = xor_init
150};
151
152/* xfer_funcs[0] is special - its release function is never called */
153static struct loop_func_table *xfer_funcs[MAX_LO_CRYPT] = {
154 &none_funcs,
155 &xor_funcs
156};
157
158static loff_t get_loop_size(struct loop_device *lo, struct file *file)
159{
160 loff_t size, offset, loopsize;
161
162 /* Compute loopsize in bytes */
163 size = i_size_read(file->f_mapping->host);
164 offset = lo->lo_offset;
165 loopsize = size - offset;
166 if (lo->lo_sizelimit > 0 && lo->lo_sizelimit < loopsize)
167 loopsize = lo->lo_sizelimit;
168
169 /*
170 * Unfortunately, if we want to do I/O on the device,
171 * the number of 512-byte sectors has to fit into a sector_t.
172 */
173 return loopsize >> 9;
174}
175
176static int
177figure_loop_size(struct loop_device *lo)
178{
179 loff_t size = get_loop_size(lo, lo->lo_backing_file);
180 sector_t x = (sector_t)size;
181
182 if (unlikely((loff_t)x != size))
183 return -EFBIG;
184
185 set_capacity(disks[lo->lo_number], x);
186 return 0;
187}
188
189static inline int
190lo_do_transfer(struct loop_device *lo, int cmd,
191 struct page *rpage, unsigned roffs,
192 struct page *lpage, unsigned loffs,
193 int size, sector_t rblock)
194{
195 if (unlikely(!lo->transfer))
196 return 0;
197
198 return lo->transfer(lo, cmd, rpage, roffs, lpage, loffs, size, rblock);
199}
200
201/**
202 * do_lo_send_aops - helper for writing data to a loop device
203 *
204 * This is the fast version for backing filesystems which implement the address
205 * space operations prepare_write and commit_write.
206 */
207static int do_lo_send_aops(struct loop_device *lo, struct bio_vec *bvec,
208 int bsize, loff_t pos, struct page *page)
209{
210 struct file *file = lo->lo_backing_file; /* kudos to NFsckingS */
211 struct address_space *mapping = file->f_mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700212 const struct address_space_operations *aops = mapping->a_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 pgoff_t index;
214 unsigned offset, bv_offs;
Zach Brown994fc28c2005-12-15 14:28:17 -0800215 int len, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800217 mutex_lock(&mapping->host->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 index = pos >> PAGE_CACHE_SHIFT;
219 offset = pos & ((pgoff_t)PAGE_CACHE_SIZE - 1);
220 bv_offs = bvec->bv_offset;
221 len = bvec->bv_len;
222 while (len > 0) {
223 sector_t IV;
224 unsigned size;
225 int transfer_result;
226
227 IV = ((sector_t)index << (PAGE_CACHE_SHIFT - 9))+(offset >> 9);
228 size = PAGE_CACHE_SIZE - offset;
229 if (size > len)
230 size = len;
231 page = grab_cache_page(mapping, index);
232 if (unlikely(!page))
233 goto fail;
Zach Brown994fc28c2005-12-15 14:28:17 -0800234 ret = aops->prepare_write(file, page, offset,
235 offset + size);
236 if (unlikely(ret)) {
237 if (ret == AOP_TRUNCATED_PAGE) {
238 page_cache_release(page);
239 continue;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto unlock;
Zach Brown994fc28c2005-12-15 14:28:17 -0800242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 transfer_result = lo_do_transfer(lo, WRITE, page, offset,
244 bvec->bv_page, bv_offs, size, IV);
245 if (unlikely(transfer_result)) {
246 char *kaddr;
247
248 /*
249 * The transfer failed, but we still write the data to
250 * keep prepare/commit calls balanced.
251 */
252 printk(KERN_ERR "loop: transfer error block %llu\n",
253 (unsigned long long)index);
254 kaddr = kmap_atomic(page, KM_USER0);
255 memset(kaddr + offset, 0, size);
256 kunmap_atomic(kaddr, KM_USER0);
257 }
258 flush_dcache_page(page);
Zach Brown994fc28c2005-12-15 14:28:17 -0800259 ret = aops->commit_write(file, page, offset,
260 offset + size);
261 if (unlikely(ret)) {
262 if (ret == AOP_TRUNCATED_PAGE) {
263 page_cache_release(page);
264 continue;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 goto unlock;
Zach Brown994fc28c2005-12-15 14:28:17 -0800267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (unlikely(transfer_result))
269 goto unlock;
270 bv_offs += size;
271 len -= size;
272 offset = 0;
273 index++;
274 pos += size;
275 unlock_page(page);
276 page_cache_release(page);
277 }
Zach Brown994fc28c2005-12-15 14:28:17 -0800278 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800280 mutex_unlock(&mapping->host->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return ret;
282unlock:
283 unlock_page(page);
284 page_cache_release(page);
285fail:
286 ret = -1;
287 goto out;
288}
289
290/**
291 * __do_lo_send_write - helper for writing data to a loop device
292 *
293 * This helper just factors out common code between do_lo_send_direct_write()
294 * and do_lo_send_write().
295 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800296static int __do_lo_send_write(struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 u8 __user *buf, const int len, loff_t pos)
298{
299 ssize_t bw;
300 mm_segment_t old_fs = get_fs();
301
302 set_fs(get_ds());
303 bw = file->f_op->write(file, buf, len, &pos);
304 set_fs(old_fs);
305 if (likely(bw == len))
306 return 0;
307 printk(KERN_ERR "loop: Write error at byte offset %llu, length %i.\n",
308 (unsigned long long)pos, len);
309 if (bw >= 0)
310 bw = -EIO;
311 return bw;
312}
313
314/**
315 * do_lo_send_direct_write - helper for writing data to a loop device
316 *
317 * This is the fast, non-transforming version for backing filesystems which do
318 * not implement the address space operations prepare_write and commit_write.
319 * It uses the write file operation which should be present on all writeable
320 * filesystems.
321 */
322static int do_lo_send_direct_write(struct loop_device *lo,
323 struct bio_vec *bvec, int bsize, loff_t pos, struct page *page)
324{
325 ssize_t bw = __do_lo_send_write(lo->lo_backing_file,
326 (u8 __user *)kmap(bvec->bv_page) + bvec->bv_offset,
327 bvec->bv_len, pos);
328 kunmap(bvec->bv_page);
329 cond_resched();
330 return bw;
331}
332
333/**
334 * do_lo_send_write - helper for writing data to a loop device
335 *
336 * This is the slow, transforming version for filesystems which do not
337 * implement the address space operations prepare_write and commit_write. It
338 * uses the write file operation which should be present on all writeable
339 * filesystems.
340 *
341 * Using fops->write is slower than using aops->{prepare,commit}_write in the
342 * transforming case because we need to double buffer the data as we cannot do
343 * the transformations in place as we do not have direct access to the
344 * destination pages of the backing file.
345 */
346static int do_lo_send_write(struct loop_device *lo, struct bio_vec *bvec,
347 int bsize, loff_t pos, struct page *page)
348{
349 int ret = lo_do_transfer(lo, WRITE, page, 0, bvec->bv_page,
350 bvec->bv_offset, bvec->bv_len, pos >> 9);
351 if (likely(!ret))
352 return __do_lo_send_write(lo->lo_backing_file,
353 (u8 __user *)page_address(page), bvec->bv_len,
354 pos);
355 printk(KERN_ERR "loop: Transfer error at byte offset %llu, "
356 "length %i.\n", (unsigned long long)pos, bvec->bv_len);
357 if (ret > 0)
358 ret = -EIO;
359 return ret;
360}
361
362static int lo_send(struct loop_device *lo, struct bio *bio, int bsize,
363 loff_t pos)
364{
365 int (*do_lo_send)(struct loop_device *, struct bio_vec *, int, loff_t,
366 struct page *page);
367 struct bio_vec *bvec;
368 struct page *page = NULL;
369 int i, ret = 0;
370
371 do_lo_send = do_lo_send_aops;
372 if (!(lo->lo_flags & LO_FLAGS_USE_AOPS)) {
373 do_lo_send = do_lo_send_direct_write;
374 if (lo->transfer != transfer_none) {
375 page = alloc_page(GFP_NOIO | __GFP_HIGHMEM);
376 if (unlikely(!page))
377 goto fail;
378 kmap(page);
379 do_lo_send = do_lo_send_write;
380 }
381 }
382 bio_for_each_segment(bvec, bio, i) {
383 ret = do_lo_send(lo, bvec, bsize, pos, page);
384 if (ret < 0)
385 break;
386 pos += bvec->bv_len;
387 }
388 if (page) {
389 kunmap(page);
390 __free_page(page);
391 }
392out:
393 return ret;
394fail:
395 printk(KERN_ERR "loop: Failed to allocate temporary page for write.\n");
396 ret = -ENOMEM;
397 goto out;
398}
399
400struct lo_read_data {
401 struct loop_device *lo;
402 struct page *page;
403 unsigned offset;
404 int bsize;
405};
406
407static int
408lo_read_actor(read_descriptor_t *desc, struct page *page,
409 unsigned long offset, unsigned long size)
410{
411 unsigned long count = desc->count;
412 struct lo_read_data *p = desc->arg.data;
413 struct loop_device *lo = p->lo;
414 sector_t IV;
415
416 IV = ((sector_t) page->index << (PAGE_CACHE_SHIFT - 9))+(offset >> 9);
417
418 if (size > count)
419 size = count;
420
421 if (lo_do_transfer(lo, READ, page, offset, p->page, p->offset, size, IV)) {
422 size = 0;
423 printk(KERN_ERR "loop: transfer error block %ld\n",
424 page->index);
425 desc->error = -EINVAL;
426 }
427
428 flush_dcache_page(p->page);
429
430 desc->count = count - size;
431 desc->written += size;
432 p->offset += size;
433 return size;
434}
435
436static int
437do_lo_receive(struct loop_device *lo,
438 struct bio_vec *bvec, int bsize, loff_t pos)
439{
440 struct lo_read_data cookie;
441 struct file *file;
442 int retval;
443
444 cookie.lo = lo;
445 cookie.page = bvec->bv_page;
446 cookie.offset = bvec->bv_offset;
447 cookie.bsize = bsize;
448 file = lo->lo_backing_file;
449 retval = file->f_op->sendfile(file, &pos, bvec->bv_len,
450 lo_read_actor, &cookie);
451 return (retval < 0)? retval: 0;
452}
453
454static int
455lo_receive(struct loop_device *lo, struct bio *bio, int bsize, loff_t pos)
456{
457 struct bio_vec *bvec;
458 int i, ret = 0;
459
460 bio_for_each_segment(bvec, bio, i) {
461 ret = do_lo_receive(lo, bvec, bsize, pos);
462 if (ret < 0)
463 break;
464 pos += bvec->bv_len;
465 }
466 return ret;
467}
468
469static int do_bio_filebacked(struct loop_device *lo, struct bio *bio)
470{
471 loff_t pos;
472 int ret;
473
474 pos = ((loff_t) bio->bi_sector << 9) + lo->lo_offset;
475 if (bio_rw(bio) == WRITE)
476 ret = lo_send(lo, bio, lo->lo_blocksize, pos);
477 else
478 ret = lo_receive(lo, bio, lo->lo_blocksize, pos);
479 return ret;
480}
481
482/*
483 * Add bio to back of pending list
484 */
485static void loop_add_bio(struct loop_device *lo, struct bio *bio)
486{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (lo->lo_biotail) {
488 lo->lo_biotail->bi_next = bio;
489 lo->lo_biotail = bio;
490 } else
491 lo->lo_bio = lo->lo_biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494/*
495 * Grab first pending buffer
496 */
497static struct bio *loop_get_bio(struct loop_device *lo)
498{
499 struct bio *bio;
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if ((bio = lo->lo_bio)) {
502 if (bio == lo->lo_biotail)
503 lo->lo_biotail = NULL;
504 lo->lo_bio = bio->bi_next;
505 bio->bi_next = NULL;
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 return bio;
509}
510
511static int loop_make_request(request_queue_t *q, struct bio *old_bio)
512{
513 struct loop_device *lo = q->queuedata;
514 int rw = bio_rw(old_bio);
515
Nick Piggin35a82d12005-06-23 00:09:06 -0700516 if (rw == READA)
517 rw = READ;
518
519 BUG_ON(!lo || (rw != READ && rw != WRITE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 spin_lock_irq(&lo->lo_lock);
522 if (lo->lo_state != Lo_bound)
Nick Piggin35a82d12005-06-23 00:09:06 -0700523 goto out;
524 if (unlikely(rw == WRITE && (lo->lo_flags & LO_FLAGS_READ_ONLY)))
525 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 loop_add_bio(lo, old_bio);
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700527 wake_up(&lo->lo_event);
Nick Piggin35a82d12005-06-23 00:09:06 -0700528 spin_unlock_irq(&lo->lo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return 0;
Nick Piggin35a82d12005-06-23 00:09:06 -0700530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531out:
Nick Piggin35a82d12005-06-23 00:09:06 -0700532 spin_unlock_irq(&lo->lo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 bio_io_error(old_bio, old_bio->bi_size);
534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537/*
538 * kick off io on the underlying address space
539 */
540static void loop_unplug(request_queue_t *q)
541{
542 struct loop_device *lo = q->queuedata;
543
544 clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags);
545 blk_run_address_space(lo->lo_backing_file->f_mapping);
546}
547
548struct switch_request {
549 struct file *file;
550 struct completion wait;
551};
552
553static void do_loop_switch(struct loop_device *, struct switch_request *);
554
555static inline void loop_handle_bio(struct loop_device *lo, struct bio *bio)
556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 if (unlikely(!bio->bi_bdev)) {
558 do_loop_switch(lo, bio->bi_private);
559 bio_put(bio);
560 } else {
Nick Piggin35a82d12005-06-23 00:09:06 -0700561 int ret = do_bio_filebacked(lo, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 bio_endio(bio, bio->bi_size, ret);
563 }
564}
565
566/*
567 * worker thread that handles reads/writes to file backed loop devices,
568 * to avoid blocking in our make_request_fn. it also does loop decrypting
569 * on reads for block backed loop, as that is too heavy to do from
570 * b_end_io context where irqs may be disabled.
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700571 *
572 * Loop explanation: loop_clr_fd() sets lo_state to Lo_rundown before
573 * calling kthread_stop(). Therefore once kthread_should_stop() is
574 * true, make_request will not place any more requests. Therefore
575 * once kthread_should_stop() is true and lo_bio is NULL, we are
576 * done with the loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
578static int loop_thread(void *data)
579{
580 struct loop_device *lo = data;
581 struct bio *bio;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /*
584 * loop can be used in an encrypted device,
585 * hence, it mustn't be stopped at all
586 * because it could be indirectly used during suspension
587 */
588 current->flags |= PF_NOFREEZE;
589
590 set_user_nice(current, -20);
591
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700592 while (!kthread_should_stop() || lo->lo_bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700594 wait_event_interruptible(lo->lo_event,
595 lo->lo_bio || kthread_should_stop());
Linus Torvalds09c0dc62006-06-26 11:55:42 -0700596
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700597 if (!lo->lo_bio)
Nick Piggin35a82d12005-06-23 00:09:06 -0700598 continue;
Nick Piggin35a82d12005-06-23 00:09:06 -0700599 spin_lock_irq(&lo->lo_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 bio = loop_get_bio(lo);
Nick Piggin35a82d12005-06-23 00:09:06 -0700601 spin_unlock_irq(&lo->lo_lock);
602
603 BUG_ON(!bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 loop_handle_bio(lo, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 0;
608}
609
610/*
611 * loop_switch performs the hard work of switching a backing store.
612 * First it needs to flush existing IO, it does this by sending a magic
613 * BIO down the pipe. The completion of this BIO does the actual switch.
614 */
615static int loop_switch(struct loop_device *lo, struct file *file)
616{
617 struct switch_request w;
618 struct bio *bio = bio_alloc(GFP_KERNEL, 1);
619 if (!bio)
620 return -ENOMEM;
621 init_completion(&w.wait);
622 w.file = file;
623 bio->bi_private = &w;
624 bio->bi_bdev = NULL;
625 loop_make_request(lo->lo_queue, bio);
626 wait_for_completion(&w.wait);
627 return 0;
628}
629
630/*
631 * Do the actual switch; called from the BIO completion routine
632 */
633static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
634{
635 struct file *file = p->file;
636 struct file *old_file = lo->lo_backing_file;
637 struct address_space *mapping = file->f_mapping;
638
639 mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask);
640 lo->lo_backing_file = file;
Theodore Ts'oba52de12006-09-27 01:50:49 -0700641 lo->lo_blocksize = S_ISBLK(mapping->host->i_mode) ?
642 mapping->host->i_bdev->bd_block_size : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 lo->old_gfp_mask = mapping_gfp_mask(mapping);
644 mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
645 complete(&p->wait);
646}
647
648
649/*
650 * loop_change_fd switched the backing store of a loopback device to
651 * a new file. This is useful for operating system installers to free up
652 * the original file and in High Availability environments to switch to
653 * an alternative location for the content in case of server meltdown.
654 * This can only work if the loop device is used read-only, and if the
655 * new backing store is the same size and type as the old backing store.
656 */
657static int loop_change_fd(struct loop_device *lo, struct file *lo_file,
658 struct block_device *bdev, unsigned int arg)
659{
660 struct file *file, *old_file;
661 struct inode *inode;
662 int error;
663
664 error = -ENXIO;
665 if (lo->lo_state != Lo_bound)
666 goto out;
667
668 /* the loop device has to be read-only */
669 error = -EINVAL;
670 if (!(lo->lo_flags & LO_FLAGS_READ_ONLY))
671 goto out;
672
673 error = -EBADF;
674 file = fget(arg);
675 if (!file)
676 goto out;
677
678 inode = file->f_mapping->host;
679 old_file = lo->lo_backing_file;
680
681 error = -EINVAL;
682
683 if (!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))
684 goto out_putf;
685
686 /* new backing store needs to support loop (eg sendfile) */
687 if (!inode->i_fop->sendfile)
688 goto out_putf;
689
690 /* size of the new backing store needs to be the same */
691 if (get_loop_size(lo, file) != get_loop_size(lo, old_file))
692 goto out_putf;
693
694 /* and ... switch */
695 error = loop_switch(lo, file);
696 if (error)
697 goto out_putf;
698
699 fput(old_file);
700 return 0;
701
702 out_putf:
703 fput(file);
704 out:
705 return error;
706}
707
708static inline int is_loop_device(struct file *file)
709{
710 struct inode *i = file->f_mapping->host;
711
712 return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR;
713}
714
715static int loop_set_fd(struct loop_device *lo, struct file *lo_file,
716 struct block_device *bdev, unsigned int arg)
717{
718 struct file *file, *f;
719 struct inode *inode;
720 struct address_space *mapping;
721 unsigned lo_blocksize;
722 int lo_flags = 0;
723 int error;
724 loff_t size;
725
726 /* This is safe, since we have a reference from open(). */
727 __module_get(THIS_MODULE);
728
729 error = -EBADF;
730 file = fget(arg);
731 if (!file)
732 goto out;
733
734 error = -EBUSY;
735 if (lo->lo_state != Lo_unbound)
736 goto out_putf;
737
738 /* Avoid recursion */
739 f = file;
740 while (is_loop_device(f)) {
741 struct loop_device *l;
742
743 if (f->f_mapping->host->i_rdev == lo_file->f_mapping->host->i_rdev)
744 goto out_putf;
745
746 l = f->f_mapping->host->i_bdev->bd_disk->private_data;
747 if (l->lo_state == Lo_unbound) {
748 error = -EINVAL;
749 goto out_putf;
750 }
751 f = l->lo_backing_file;
752 }
753
754 mapping = file->f_mapping;
755 inode = mapping->host;
756
757 if (!(file->f_mode & FMODE_WRITE))
758 lo_flags |= LO_FLAGS_READ_ONLY;
759
760 error = -EINVAL;
761 if (S_ISREG(inode->i_mode) || S_ISBLK(inode->i_mode)) {
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700762 const struct address_space_operations *aops = mapping->a_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 /*
764 * If we can't read - sorry. If we only can't write - well,
765 * it's going to be read-only.
766 */
767 if (!file->f_op->sendfile)
768 goto out_putf;
769 if (aops->prepare_write && aops->commit_write)
770 lo_flags |= LO_FLAGS_USE_AOPS;
771 if (!(lo_flags & LO_FLAGS_USE_AOPS) && !file->f_op->write)
772 lo_flags |= LO_FLAGS_READ_ONLY;
773
Theodore Ts'oba52de12006-09-27 01:50:49 -0700774 lo_blocksize = S_ISBLK(inode->i_mode) ?
775 inode->i_bdev->bd_block_size : PAGE_SIZE;
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 error = 0;
778 } else {
779 goto out_putf;
780 }
781
782 size = get_loop_size(lo, file);
783
784 if ((loff_t)(sector_t)size != size) {
785 error = -EFBIG;
786 goto out_putf;
787 }
788
789 if (!(lo_file->f_mode & FMODE_WRITE))
790 lo_flags |= LO_FLAGS_READ_ONLY;
791
792 set_device_ro(bdev, (lo_flags & LO_FLAGS_READ_ONLY) != 0);
793
794 lo->lo_blocksize = lo_blocksize;
795 lo->lo_device = bdev;
796 lo->lo_flags = lo_flags;
797 lo->lo_backing_file = file;
Constantine Sapuntzakiseefe85e2006-06-23 02:06:08 -0700798 lo->transfer = transfer_none;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 lo->ioctl = NULL;
800 lo->lo_sizelimit = 0;
801 lo->old_gfp_mask = mapping_gfp_mask(mapping);
802 mapping_set_gfp_mask(mapping, lo->old_gfp_mask & ~(__GFP_IO|__GFP_FS));
803
804 lo->lo_bio = lo->lo_biotail = NULL;
805
806 /*
807 * set queue make_request_fn, and add limits based on lower level
808 * device
809 */
810 blk_queue_make_request(lo->lo_queue, loop_make_request);
811 lo->lo_queue->queuedata = lo;
812 lo->lo_queue->unplug_fn = loop_unplug;
813
814 set_capacity(disks[lo->lo_number], size);
815 bd_set_size(bdev, size << 9);
816
817 set_blocksize(bdev, lo_blocksize);
818
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700819 lo->lo_thread = kthread_create(loop_thread, lo, "loop%d",
820 lo->lo_number);
821 if (IS_ERR(lo->lo_thread)) {
822 error = PTR_ERR(lo->lo_thread);
Serge E. Hallyna7422bf2006-09-29 02:01:18 -0700823 goto out_clr;
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700824 }
825 lo->lo_state = Lo_bound;
826 wake_up_process(lo->lo_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return 0;
828
Serge E. Hallyna7422bf2006-09-29 02:01:18 -0700829out_clr:
830 lo->lo_thread = NULL;
831 lo->lo_device = NULL;
832 lo->lo_backing_file = NULL;
833 lo->lo_flags = 0;
834 set_capacity(disks[lo->lo_number], 0);
835 invalidate_bdev(bdev, 0);
836 bd_set_size(bdev, 0);
837 mapping_set_gfp_mask(mapping, lo->old_gfp_mask);
838 lo->lo_state = Lo_unbound;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 out_putf:
840 fput(file);
841 out:
842 /* This is safe: open() is still holding a reference. */
843 module_put(THIS_MODULE);
844 return error;
845}
846
847static int
848loop_release_xfer(struct loop_device *lo)
849{
850 int err = 0;
851 struct loop_func_table *xfer = lo->lo_encryption;
852
853 if (xfer) {
854 if (xfer->release)
855 err = xfer->release(lo);
856 lo->transfer = NULL;
857 lo->lo_encryption = NULL;
858 module_put(xfer->owner);
859 }
860 return err;
861}
862
863static int
864loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
865 const struct loop_info64 *i)
866{
867 int err = 0;
868
869 if (xfer) {
870 struct module *owner = xfer->owner;
871
872 if (!try_module_get(owner))
873 return -EINVAL;
874 if (xfer->init)
875 err = xfer->init(lo, i);
876 if (err)
877 module_put(owner);
878 else
879 lo->lo_encryption = xfer;
880 }
881 return err;
882}
883
884static int loop_clr_fd(struct loop_device *lo, struct block_device *bdev)
885{
886 struct file *filp = lo->lo_backing_file;
Al Virob4e3ca12005-10-21 03:22:34 -0400887 gfp_t gfp = lo->old_gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 if (lo->lo_state != Lo_bound)
890 return -ENXIO;
891
892 if (lo->lo_refcnt > 1) /* we needed one fd for the ioctl */
893 return -EBUSY;
894
895 if (filp == NULL)
896 return -EINVAL;
897
898 spin_lock_irq(&lo->lo_lock);
899 lo->lo_state = Lo_rundown;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 spin_unlock_irq(&lo->lo_lock);
901
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700902 kthread_stop(lo->lo_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 lo->lo_backing_file = NULL;
905
906 loop_release_xfer(lo);
907 lo->transfer = NULL;
908 lo->ioctl = NULL;
909 lo->lo_device = NULL;
910 lo->lo_encryption = NULL;
911 lo->lo_offset = 0;
912 lo->lo_sizelimit = 0;
913 lo->lo_encrypt_key_size = 0;
914 lo->lo_flags = 0;
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700915 lo->lo_thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 memset(lo->lo_encrypt_key, 0, LO_KEY_SIZE);
917 memset(lo->lo_crypt_name, 0, LO_NAME_SIZE);
918 memset(lo->lo_file_name, 0, LO_NAME_SIZE);
919 invalidate_bdev(bdev, 0);
920 set_capacity(disks[lo->lo_number], 0);
921 bd_set_size(bdev, 0);
922 mapping_set_gfp_mask(filp->f_mapping, gfp);
923 lo->lo_state = Lo_unbound;
924 fput(filp);
925 /* This is safe: open() is still holding a reference. */
926 module_put(THIS_MODULE);
927 return 0;
928}
929
930static int
931loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
932{
933 int err;
934 struct loop_func_table *xfer;
935
936 if (lo->lo_encrypt_key_size && lo->lo_key_owner != current->uid &&
937 !capable(CAP_SYS_ADMIN))
938 return -EPERM;
939 if (lo->lo_state != Lo_bound)
940 return -ENXIO;
941 if ((unsigned int) info->lo_encrypt_key_size > LO_KEY_SIZE)
942 return -EINVAL;
943
944 err = loop_release_xfer(lo);
945 if (err)
946 return err;
947
948 if (info->lo_encrypt_type) {
949 unsigned int type = info->lo_encrypt_type;
950
951 if (type >= MAX_LO_CRYPT)
952 return -EINVAL;
953 xfer = xfer_funcs[type];
954 if (xfer == NULL)
955 return -EINVAL;
956 } else
957 xfer = NULL;
958
959 err = loop_init_xfer(lo, xfer, info);
960 if (err)
961 return err;
962
963 if (lo->lo_offset != info->lo_offset ||
964 lo->lo_sizelimit != info->lo_sizelimit) {
965 lo->lo_offset = info->lo_offset;
966 lo->lo_sizelimit = info->lo_sizelimit;
967 if (figure_loop_size(lo))
968 return -EFBIG;
969 }
970
971 memcpy(lo->lo_file_name, info->lo_file_name, LO_NAME_SIZE);
972 memcpy(lo->lo_crypt_name, info->lo_crypt_name, LO_NAME_SIZE);
973 lo->lo_file_name[LO_NAME_SIZE-1] = 0;
974 lo->lo_crypt_name[LO_NAME_SIZE-1] = 0;
975
976 if (!xfer)
977 xfer = &none_funcs;
978 lo->transfer = xfer->transfer;
979 lo->ioctl = xfer->ioctl;
980
981 lo->lo_encrypt_key_size = info->lo_encrypt_key_size;
982 lo->lo_init[0] = info->lo_init[0];
983 lo->lo_init[1] = info->lo_init[1];
984 if (info->lo_encrypt_key_size) {
985 memcpy(lo->lo_encrypt_key, info->lo_encrypt_key,
986 info->lo_encrypt_key_size);
987 lo->lo_key_owner = current->uid;
988 }
989
990 return 0;
991}
992
993static int
994loop_get_status(struct loop_device *lo, struct loop_info64 *info)
995{
996 struct file *file = lo->lo_backing_file;
997 struct kstat stat;
998 int error;
999
1000 if (lo->lo_state != Lo_bound)
1001 return -ENXIO;
1002 error = vfs_getattr(file->f_vfsmnt, file->f_dentry, &stat);
1003 if (error)
1004 return error;
1005 memset(info, 0, sizeof(*info));
1006 info->lo_number = lo->lo_number;
1007 info->lo_device = huge_encode_dev(stat.dev);
1008 info->lo_inode = stat.ino;
1009 info->lo_rdevice = huge_encode_dev(lo->lo_device ? stat.rdev : stat.dev);
1010 info->lo_offset = lo->lo_offset;
1011 info->lo_sizelimit = lo->lo_sizelimit;
1012 info->lo_flags = lo->lo_flags;
1013 memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE);
1014 memcpy(info->lo_crypt_name, lo->lo_crypt_name, LO_NAME_SIZE);
1015 info->lo_encrypt_type =
1016 lo->lo_encryption ? lo->lo_encryption->number : 0;
1017 if (lo->lo_encrypt_key_size && capable(CAP_SYS_ADMIN)) {
1018 info->lo_encrypt_key_size = lo->lo_encrypt_key_size;
1019 memcpy(info->lo_encrypt_key, lo->lo_encrypt_key,
1020 lo->lo_encrypt_key_size);
1021 }
1022 return 0;
1023}
1024
1025static void
1026loop_info64_from_old(const struct loop_info *info, struct loop_info64 *info64)
1027{
1028 memset(info64, 0, sizeof(*info64));
1029 info64->lo_number = info->lo_number;
1030 info64->lo_device = info->lo_device;
1031 info64->lo_inode = info->lo_inode;
1032 info64->lo_rdevice = info->lo_rdevice;
1033 info64->lo_offset = info->lo_offset;
1034 info64->lo_sizelimit = 0;
1035 info64->lo_encrypt_type = info->lo_encrypt_type;
1036 info64->lo_encrypt_key_size = info->lo_encrypt_key_size;
1037 info64->lo_flags = info->lo_flags;
1038 info64->lo_init[0] = info->lo_init[0];
1039 info64->lo_init[1] = info->lo_init[1];
1040 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1041 memcpy(info64->lo_crypt_name, info->lo_name, LO_NAME_SIZE);
1042 else
1043 memcpy(info64->lo_file_name, info->lo_name, LO_NAME_SIZE);
1044 memcpy(info64->lo_encrypt_key, info->lo_encrypt_key, LO_KEY_SIZE);
1045}
1046
1047static int
1048loop_info64_to_old(const struct loop_info64 *info64, struct loop_info *info)
1049{
1050 memset(info, 0, sizeof(*info));
1051 info->lo_number = info64->lo_number;
1052 info->lo_device = info64->lo_device;
1053 info->lo_inode = info64->lo_inode;
1054 info->lo_rdevice = info64->lo_rdevice;
1055 info->lo_offset = info64->lo_offset;
1056 info->lo_encrypt_type = info64->lo_encrypt_type;
1057 info->lo_encrypt_key_size = info64->lo_encrypt_key_size;
1058 info->lo_flags = info64->lo_flags;
1059 info->lo_init[0] = info64->lo_init[0];
1060 info->lo_init[1] = info64->lo_init[1];
1061 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1062 memcpy(info->lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1063 else
1064 memcpy(info->lo_name, info64->lo_file_name, LO_NAME_SIZE);
1065 memcpy(info->lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1066
1067 /* error in case values were truncated */
1068 if (info->lo_device != info64->lo_device ||
1069 info->lo_rdevice != info64->lo_rdevice ||
1070 info->lo_inode != info64->lo_inode ||
1071 info->lo_offset != info64->lo_offset)
1072 return -EOVERFLOW;
1073
1074 return 0;
1075}
1076
1077static int
1078loop_set_status_old(struct loop_device *lo, const struct loop_info __user *arg)
1079{
1080 struct loop_info info;
1081 struct loop_info64 info64;
1082
1083 if (copy_from_user(&info, arg, sizeof (struct loop_info)))
1084 return -EFAULT;
1085 loop_info64_from_old(&info, &info64);
1086 return loop_set_status(lo, &info64);
1087}
1088
1089static int
1090loop_set_status64(struct loop_device *lo, const struct loop_info64 __user *arg)
1091{
1092 struct loop_info64 info64;
1093
1094 if (copy_from_user(&info64, arg, sizeof (struct loop_info64)))
1095 return -EFAULT;
1096 return loop_set_status(lo, &info64);
1097}
1098
1099static int
1100loop_get_status_old(struct loop_device *lo, struct loop_info __user *arg) {
1101 struct loop_info info;
1102 struct loop_info64 info64;
1103 int err = 0;
1104
1105 if (!arg)
1106 err = -EINVAL;
1107 if (!err)
1108 err = loop_get_status(lo, &info64);
1109 if (!err)
1110 err = loop_info64_to_old(&info64, &info);
1111 if (!err && copy_to_user(arg, &info, sizeof(info)))
1112 err = -EFAULT;
1113
1114 return err;
1115}
1116
1117static int
1118loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
1119 struct loop_info64 info64;
1120 int err = 0;
1121
1122 if (!arg)
1123 err = -EINVAL;
1124 if (!err)
1125 err = loop_get_status(lo, &info64);
1126 if (!err && copy_to_user(arg, &info64, sizeof(info64)))
1127 err = -EFAULT;
1128
1129 return err;
1130}
1131
1132static int lo_ioctl(struct inode * inode, struct file * file,
1133 unsigned int cmd, unsigned long arg)
1134{
1135 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1136 int err;
1137
Ingo Molnarf85221d2006-03-23 03:00:38 -08001138 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 switch (cmd) {
1140 case LOOP_SET_FD:
1141 err = loop_set_fd(lo, file, inode->i_bdev, arg);
1142 break;
1143 case LOOP_CHANGE_FD:
1144 err = loop_change_fd(lo, file, inode->i_bdev, arg);
1145 break;
1146 case LOOP_CLR_FD:
1147 err = loop_clr_fd(lo, inode->i_bdev);
1148 break;
1149 case LOOP_SET_STATUS:
1150 err = loop_set_status_old(lo, (struct loop_info __user *) arg);
1151 break;
1152 case LOOP_GET_STATUS:
1153 err = loop_get_status_old(lo, (struct loop_info __user *) arg);
1154 break;
1155 case LOOP_SET_STATUS64:
1156 err = loop_set_status64(lo, (struct loop_info64 __user *) arg);
1157 break;
1158 case LOOP_GET_STATUS64:
1159 err = loop_get_status64(lo, (struct loop_info64 __user *) arg);
1160 break;
1161 default:
1162 err = lo->ioctl ? lo->ioctl(lo, cmd, arg) : -EINVAL;
1163 }
Ingo Molnarf85221d2006-03-23 03:00:38 -08001164 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return err;
1166}
1167
1168static int lo_open(struct inode *inode, struct file *file)
1169{
1170 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1171
Ingo Molnarf85221d2006-03-23 03:00:38 -08001172 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 lo->lo_refcnt++;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001174 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 return 0;
1177}
1178
1179static int lo_release(struct inode *inode, struct file *file)
1180{
1181 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1182
Ingo Molnarf85221d2006-03-23 03:00:38 -08001183 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 --lo->lo_refcnt;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001185 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 return 0;
1188}
1189
1190static struct block_device_operations lo_fops = {
1191 .owner = THIS_MODULE,
1192 .open = lo_open,
1193 .release = lo_release,
1194 .ioctl = lo_ioctl,
1195};
1196
1197/*
1198 * And now the modules code and kernel interface.
1199 */
1200module_param(max_loop, int, 0);
1201MODULE_PARM_DESC(max_loop, "Maximum number of loop devices (1-256)");
1202MODULE_LICENSE("GPL");
1203MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR);
1204
1205int loop_register_transfer(struct loop_func_table *funcs)
1206{
1207 unsigned int n = funcs->number;
1208
1209 if (n >= MAX_LO_CRYPT || xfer_funcs[n])
1210 return -EINVAL;
1211 xfer_funcs[n] = funcs;
1212 return 0;
1213}
1214
1215int loop_unregister_transfer(int number)
1216{
1217 unsigned int n = number;
1218 struct loop_device *lo;
1219 struct loop_func_table *xfer;
1220
1221 if (n == 0 || n >= MAX_LO_CRYPT || (xfer = xfer_funcs[n]) == NULL)
1222 return -EINVAL;
1223
1224 xfer_funcs[n] = NULL;
1225
1226 for (lo = &loop_dev[0]; lo < &loop_dev[max_loop]; lo++) {
Ingo Molnarf85221d2006-03-23 03:00:38 -08001227 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (lo->lo_encryption == xfer)
1230 loop_release_xfer(lo);
1231
Ingo Molnarf85221d2006-03-23 03:00:38 -08001232 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234
1235 return 0;
1236}
1237
1238EXPORT_SYMBOL(loop_register_transfer);
1239EXPORT_SYMBOL(loop_unregister_transfer);
1240
1241static int __init loop_init(void)
1242{
1243 int i;
1244
1245 if (max_loop < 1 || max_loop > 256) {
1246 printk(KERN_WARNING "loop: invalid max_loop (must be between"
1247 " 1 and 256), using default (8)\n");
1248 max_loop = 8;
1249 }
1250
1251 if (register_blkdev(LOOP_MAJOR, "loop"))
1252 return -EIO;
1253
1254 loop_dev = kmalloc(max_loop * sizeof(struct loop_device), GFP_KERNEL);
1255 if (!loop_dev)
1256 goto out_mem1;
1257 memset(loop_dev, 0, max_loop * sizeof(struct loop_device));
1258
1259 disks = kmalloc(max_loop * sizeof(struct gendisk *), GFP_KERNEL);
1260 if (!disks)
1261 goto out_mem2;
1262
1263 for (i = 0; i < max_loop; i++) {
1264 disks[i] = alloc_disk(1);
1265 if (!disks[i])
1266 goto out_mem3;
1267 }
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 for (i = 0; i < max_loop; i++) {
1270 struct loop_device *lo = &loop_dev[i];
1271 struct gendisk *disk = disks[i];
1272
1273 memset(lo, 0, sizeof(*lo));
1274 lo->lo_queue = blk_alloc_queue(GFP_KERNEL);
1275 if (!lo->lo_queue)
1276 goto out_mem4;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001277 mutex_init(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 lo->lo_number = i;
Serge E. Hallyn6c997912006-09-29 01:59:11 -07001279 lo->lo_thread = NULL;
1280 init_waitqueue_head(&lo->lo_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 spin_lock_init(&lo->lo_lock);
1282 disk->major = LOOP_MAJOR;
1283 disk->first_minor = i;
1284 disk->fops = &lo_fops;
1285 sprintf(disk->disk_name, "loop%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 disk->private_data = lo;
1287 disk->queue = lo->lo_queue;
1288 }
1289
1290 /* We cannot fail after we call this, so another loop!*/
1291 for (i = 0; i < max_loop; i++)
1292 add_disk(disks[i]);
1293 printk(KERN_INFO "loop: loaded (max %d devices)\n", max_loop);
1294 return 0;
1295
1296out_mem4:
1297 while (i--)
Al Viro1312f402006-03-12 11:02:03 -05001298 blk_cleanup_queue(loop_dev[i].lo_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 i = max_loop;
1300out_mem3:
1301 while (i--)
1302 put_disk(disks[i]);
1303 kfree(disks);
1304out_mem2:
1305 kfree(loop_dev);
1306out_mem1:
1307 unregister_blkdev(LOOP_MAJOR, "loop");
1308 printk(KERN_ERR "loop: ran out of memory\n");
1309 return -ENOMEM;
1310}
1311
1312static void loop_exit(void)
1313{
1314 int i;
1315
1316 for (i = 0; i < max_loop; i++) {
1317 del_gendisk(disks[i]);
Al Viro1312f402006-03-12 11:02:03 -05001318 blk_cleanup_queue(loop_dev[i].lo_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 put_disk(disks[i]);
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (unregister_blkdev(LOOP_MAJOR, "loop"))
1322 printk(KERN_WARNING "loop: cannot unregister blkdev\n");
1323
1324 kfree(disks);
1325 kfree(loop_dev);
1326}
1327
1328module_init(loop_init);
1329module_exit(loop_exit);
1330
1331#ifndef MODULE
1332static int __init max_loop_setup(char *str)
1333{
1334 max_loop = simple_strtol(str, NULL, 0);
1335 return 1;
1336}
1337
1338__setup("max_loop=", max_loop_setup);
1339#endif