blob: e87b88731adcb36d6c8ea297a1b24bf80096c2bc [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);
823 lo->lo_thread = NULL;
Herbert Poetzl3e88c172006-03-26 01:37:30 -0800824 goto out_putf;
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700825 }
826 lo->lo_state = Lo_bound;
827 wake_up_process(lo->lo_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829
830 out_putf:
831 fput(file);
832 out:
833 /* This is safe: open() is still holding a reference. */
834 module_put(THIS_MODULE);
835 return error;
836}
837
838static int
839loop_release_xfer(struct loop_device *lo)
840{
841 int err = 0;
842 struct loop_func_table *xfer = lo->lo_encryption;
843
844 if (xfer) {
845 if (xfer->release)
846 err = xfer->release(lo);
847 lo->transfer = NULL;
848 lo->lo_encryption = NULL;
849 module_put(xfer->owner);
850 }
851 return err;
852}
853
854static int
855loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
856 const struct loop_info64 *i)
857{
858 int err = 0;
859
860 if (xfer) {
861 struct module *owner = xfer->owner;
862
863 if (!try_module_get(owner))
864 return -EINVAL;
865 if (xfer->init)
866 err = xfer->init(lo, i);
867 if (err)
868 module_put(owner);
869 else
870 lo->lo_encryption = xfer;
871 }
872 return err;
873}
874
875static int loop_clr_fd(struct loop_device *lo, struct block_device *bdev)
876{
877 struct file *filp = lo->lo_backing_file;
Al Virob4e3ca12005-10-21 03:22:34 -0400878 gfp_t gfp = lo->old_gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 if (lo->lo_state != Lo_bound)
881 return -ENXIO;
882
883 if (lo->lo_refcnt > 1) /* we needed one fd for the ioctl */
884 return -EBUSY;
885
886 if (filp == NULL)
887 return -EINVAL;
888
889 spin_lock_irq(&lo->lo_lock);
890 lo->lo_state = Lo_rundown;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 spin_unlock_irq(&lo->lo_lock);
892
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700893 kthread_stop(lo->lo_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 lo->lo_backing_file = NULL;
896
897 loop_release_xfer(lo);
898 lo->transfer = NULL;
899 lo->ioctl = NULL;
900 lo->lo_device = NULL;
901 lo->lo_encryption = NULL;
902 lo->lo_offset = 0;
903 lo->lo_sizelimit = 0;
904 lo->lo_encrypt_key_size = 0;
905 lo->lo_flags = 0;
Serge E. Hallyn6c997912006-09-29 01:59:11 -0700906 lo->lo_thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 memset(lo->lo_encrypt_key, 0, LO_KEY_SIZE);
908 memset(lo->lo_crypt_name, 0, LO_NAME_SIZE);
909 memset(lo->lo_file_name, 0, LO_NAME_SIZE);
910 invalidate_bdev(bdev, 0);
911 set_capacity(disks[lo->lo_number], 0);
912 bd_set_size(bdev, 0);
913 mapping_set_gfp_mask(filp->f_mapping, gfp);
914 lo->lo_state = Lo_unbound;
915 fput(filp);
916 /* This is safe: open() is still holding a reference. */
917 module_put(THIS_MODULE);
918 return 0;
919}
920
921static int
922loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
923{
924 int err;
925 struct loop_func_table *xfer;
926
927 if (lo->lo_encrypt_key_size && lo->lo_key_owner != current->uid &&
928 !capable(CAP_SYS_ADMIN))
929 return -EPERM;
930 if (lo->lo_state != Lo_bound)
931 return -ENXIO;
932 if ((unsigned int) info->lo_encrypt_key_size > LO_KEY_SIZE)
933 return -EINVAL;
934
935 err = loop_release_xfer(lo);
936 if (err)
937 return err;
938
939 if (info->lo_encrypt_type) {
940 unsigned int type = info->lo_encrypt_type;
941
942 if (type >= MAX_LO_CRYPT)
943 return -EINVAL;
944 xfer = xfer_funcs[type];
945 if (xfer == NULL)
946 return -EINVAL;
947 } else
948 xfer = NULL;
949
950 err = loop_init_xfer(lo, xfer, info);
951 if (err)
952 return err;
953
954 if (lo->lo_offset != info->lo_offset ||
955 lo->lo_sizelimit != info->lo_sizelimit) {
956 lo->lo_offset = info->lo_offset;
957 lo->lo_sizelimit = info->lo_sizelimit;
958 if (figure_loop_size(lo))
959 return -EFBIG;
960 }
961
962 memcpy(lo->lo_file_name, info->lo_file_name, LO_NAME_SIZE);
963 memcpy(lo->lo_crypt_name, info->lo_crypt_name, LO_NAME_SIZE);
964 lo->lo_file_name[LO_NAME_SIZE-1] = 0;
965 lo->lo_crypt_name[LO_NAME_SIZE-1] = 0;
966
967 if (!xfer)
968 xfer = &none_funcs;
969 lo->transfer = xfer->transfer;
970 lo->ioctl = xfer->ioctl;
971
972 lo->lo_encrypt_key_size = info->lo_encrypt_key_size;
973 lo->lo_init[0] = info->lo_init[0];
974 lo->lo_init[1] = info->lo_init[1];
975 if (info->lo_encrypt_key_size) {
976 memcpy(lo->lo_encrypt_key, info->lo_encrypt_key,
977 info->lo_encrypt_key_size);
978 lo->lo_key_owner = current->uid;
979 }
980
981 return 0;
982}
983
984static int
985loop_get_status(struct loop_device *lo, struct loop_info64 *info)
986{
987 struct file *file = lo->lo_backing_file;
988 struct kstat stat;
989 int error;
990
991 if (lo->lo_state != Lo_bound)
992 return -ENXIO;
993 error = vfs_getattr(file->f_vfsmnt, file->f_dentry, &stat);
994 if (error)
995 return error;
996 memset(info, 0, sizeof(*info));
997 info->lo_number = lo->lo_number;
998 info->lo_device = huge_encode_dev(stat.dev);
999 info->lo_inode = stat.ino;
1000 info->lo_rdevice = huge_encode_dev(lo->lo_device ? stat.rdev : stat.dev);
1001 info->lo_offset = lo->lo_offset;
1002 info->lo_sizelimit = lo->lo_sizelimit;
1003 info->lo_flags = lo->lo_flags;
1004 memcpy(info->lo_file_name, lo->lo_file_name, LO_NAME_SIZE);
1005 memcpy(info->lo_crypt_name, lo->lo_crypt_name, LO_NAME_SIZE);
1006 info->lo_encrypt_type =
1007 lo->lo_encryption ? lo->lo_encryption->number : 0;
1008 if (lo->lo_encrypt_key_size && capable(CAP_SYS_ADMIN)) {
1009 info->lo_encrypt_key_size = lo->lo_encrypt_key_size;
1010 memcpy(info->lo_encrypt_key, lo->lo_encrypt_key,
1011 lo->lo_encrypt_key_size);
1012 }
1013 return 0;
1014}
1015
1016static void
1017loop_info64_from_old(const struct loop_info *info, struct loop_info64 *info64)
1018{
1019 memset(info64, 0, sizeof(*info64));
1020 info64->lo_number = info->lo_number;
1021 info64->lo_device = info->lo_device;
1022 info64->lo_inode = info->lo_inode;
1023 info64->lo_rdevice = info->lo_rdevice;
1024 info64->lo_offset = info->lo_offset;
1025 info64->lo_sizelimit = 0;
1026 info64->lo_encrypt_type = info->lo_encrypt_type;
1027 info64->lo_encrypt_key_size = info->lo_encrypt_key_size;
1028 info64->lo_flags = info->lo_flags;
1029 info64->lo_init[0] = info->lo_init[0];
1030 info64->lo_init[1] = info->lo_init[1];
1031 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1032 memcpy(info64->lo_crypt_name, info->lo_name, LO_NAME_SIZE);
1033 else
1034 memcpy(info64->lo_file_name, info->lo_name, LO_NAME_SIZE);
1035 memcpy(info64->lo_encrypt_key, info->lo_encrypt_key, LO_KEY_SIZE);
1036}
1037
1038static int
1039loop_info64_to_old(const struct loop_info64 *info64, struct loop_info *info)
1040{
1041 memset(info, 0, sizeof(*info));
1042 info->lo_number = info64->lo_number;
1043 info->lo_device = info64->lo_device;
1044 info->lo_inode = info64->lo_inode;
1045 info->lo_rdevice = info64->lo_rdevice;
1046 info->lo_offset = info64->lo_offset;
1047 info->lo_encrypt_type = info64->lo_encrypt_type;
1048 info->lo_encrypt_key_size = info64->lo_encrypt_key_size;
1049 info->lo_flags = info64->lo_flags;
1050 info->lo_init[0] = info64->lo_init[0];
1051 info->lo_init[1] = info64->lo_init[1];
1052 if (info->lo_encrypt_type == LO_CRYPT_CRYPTOAPI)
1053 memcpy(info->lo_name, info64->lo_crypt_name, LO_NAME_SIZE);
1054 else
1055 memcpy(info->lo_name, info64->lo_file_name, LO_NAME_SIZE);
1056 memcpy(info->lo_encrypt_key, info64->lo_encrypt_key, LO_KEY_SIZE);
1057
1058 /* error in case values were truncated */
1059 if (info->lo_device != info64->lo_device ||
1060 info->lo_rdevice != info64->lo_rdevice ||
1061 info->lo_inode != info64->lo_inode ||
1062 info->lo_offset != info64->lo_offset)
1063 return -EOVERFLOW;
1064
1065 return 0;
1066}
1067
1068static int
1069loop_set_status_old(struct loop_device *lo, const struct loop_info __user *arg)
1070{
1071 struct loop_info info;
1072 struct loop_info64 info64;
1073
1074 if (copy_from_user(&info, arg, sizeof (struct loop_info)))
1075 return -EFAULT;
1076 loop_info64_from_old(&info, &info64);
1077 return loop_set_status(lo, &info64);
1078}
1079
1080static int
1081loop_set_status64(struct loop_device *lo, const struct loop_info64 __user *arg)
1082{
1083 struct loop_info64 info64;
1084
1085 if (copy_from_user(&info64, arg, sizeof (struct loop_info64)))
1086 return -EFAULT;
1087 return loop_set_status(lo, &info64);
1088}
1089
1090static int
1091loop_get_status_old(struct loop_device *lo, struct loop_info __user *arg) {
1092 struct loop_info info;
1093 struct loop_info64 info64;
1094 int err = 0;
1095
1096 if (!arg)
1097 err = -EINVAL;
1098 if (!err)
1099 err = loop_get_status(lo, &info64);
1100 if (!err)
1101 err = loop_info64_to_old(&info64, &info);
1102 if (!err && copy_to_user(arg, &info, sizeof(info)))
1103 err = -EFAULT;
1104
1105 return err;
1106}
1107
1108static int
1109loop_get_status64(struct loop_device *lo, struct loop_info64 __user *arg) {
1110 struct loop_info64 info64;
1111 int err = 0;
1112
1113 if (!arg)
1114 err = -EINVAL;
1115 if (!err)
1116 err = loop_get_status(lo, &info64);
1117 if (!err && copy_to_user(arg, &info64, sizeof(info64)))
1118 err = -EFAULT;
1119
1120 return err;
1121}
1122
1123static int lo_ioctl(struct inode * inode, struct file * file,
1124 unsigned int cmd, unsigned long arg)
1125{
1126 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1127 int err;
1128
Ingo Molnarf85221d2006-03-23 03:00:38 -08001129 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 switch (cmd) {
1131 case LOOP_SET_FD:
1132 err = loop_set_fd(lo, file, inode->i_bdev, arg);
1133 break;
1134 case LOOP_CHANGE_FD:
1135 err = loop_change_fd(lo, file, inode->i_bdev, arg);
1136 break;
1137 case LOOP_CLR_FD:
1138 err = loop_clr_fd(lo, inode->i_bdev);
1139 break;
1140 case LOOP_SET_STATUS:
1141 err = loop_set_status_old(lo, (struct loop_info __user *) arg);
1142 break;
1143 case LOOP_GET_STATUS:
1144 err = loop_get_status_old(lo, (struct loop_info __user *) arg);
1145 break;
1146 case LOOP_SET_STATUS64:
1147 err = loop_set_status64(lo, (struct loop_info64 __user *) arg);
1148 break;
1149 case LOOP_GET_STATUS64:
1150 err = loop_get_status64(lo, (struct loop_info64 __user *) arg);
1151 break;
1152 default:
1153 err = lo->ioctl ? lo->ioctl(lo, cmd, arg) : -EINVAL;
1154 }
Ingo Molnarf85221d2006-03-23 03:00:38 -08001155 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return err;
1157}
1158
1159static int lo_open(struct inode *inode, struct file *file)
1160{
1161 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1162
Ingo Molnarf85221d2006-03-23 03:00:38 -08001163 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 lo->lo_refcnt++;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001165 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 return 0;
1168}
1169
1170static int lo_release(struct inode *inode, struct file *file)
1171{
1172 struct loop_device *lo = inode->i_bdev->bd_disk->private_data;
1173
Ingo Molnarf85221d2006-03-23 03:00:38 -08001174 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 --lo->lo_refcnt;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001176 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 return 0;
1179}
1180
1181static struct block_device_operations lo_fops = {
1182 .owner = THIS_MODULE,
1183 .open = lo_open,
1184 .release = lo_release,
1185 .ioctl = lo_ioctl,
1186};
1187
1188/*
1189 * And now the modules code and kernel interface.
1190 */
1191module_param(max_loop, int, 0);
1192MODULE_PARM_DESC(max_loop, "Maximum number of loop devices (1-256)");
1193MODULE_LICENSE("GPL");
1194MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR);
1195
1196int loop_register_transfer(struct loop_func_table *funcs)
1197{
1198 unsigned int n = funcs->number;
1199
1200 if (n >= MAX_LO_CRYPT || xfer_funcs[n])
1201 return -EINVAL;
1202 xfer_funcs[n] = funcs;
1203 return 0;
1204}
1205
1206int loop_unregister_transfer(int number)
1207{
1208 unsigned int n = number;
1209 struct loop_device *lo;
1210 struct loop_func_table *xfer;
1211
1212 if (n == 0 || n >= MAX_LO_CRYPT || (xfer = xfer_funcs[n]) == NULL)
1213 return -EINVAL;
1214
1215 xfer_funcs[n] = NULL;
1216
1217 for (lo = &loop_dev[0]; lo < &loop_dev[max_loop]; lo++) {
Ingo Molnarf85221d2006-03-23 03:00:38 -08001218 mutex_lock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 if (lo->lo_encryption == xfer)
1221 loop_release_xfer(lo);
1222
Ingo Molnarf85221d2006-03-23 03:00:38 -08001223 mutex_unlock(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
1226 return 0;
1227}
1228
1229EXPORT_SYMBOL(loop_register_transfer);
1230EXPORT_SYMBOL(loop_unregister_transfer);
1231
1232static int __init loop_init(void)
1233{
1234 int i;
1235
1236 if (max_loop < 1 || max_loop > 256) {
1237 printk(KERN_WARNING "loop: invalid max_loop (must be between"
1238 " 1 and 256), using default (8)\n");
1239 max_loop = 8;
1240 }
1241
1242 if (register_blkdev(LOOP_MAJOR, "loop"))
1243 return -EIO;
1244
1245 loop_dev = kmalloc(max_loop * sizeof(struct loop_device), GFP_KERNEL);
1246 if (!loop_dev)
1247 goto out_mem1;
1248 memset(loop_dev, 0, max_loop * sizeof(struct loop_device));
1249
1250 disks = kmalloc(max_loop * sizeof(struct gendisk *), GFP_KERNEL);
1251 if (!disks)
1252 goto out_mem2;
1253
1254 for (i = 0; i < max_loop; i++) {
1255 disks[i] = alloc_disk(1);
1256 if (!disks[i])
1257 goto out_mem3;
1258 }
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 for (i = 0; i < max_loop; i++) {
1261 struct loop_device *lo = &loop_dev[i];
1262 struct gendisk *disk = disks[i];
1263
1264 memset(lo, 0, sizeof(*lo));
1265 lo->lo_queue = blk_alloc_queue(GFP_KERNEL);
1266 if (!lo->lo_queue)
1267 goto out_mem4;
Ingo Molnarf85221d2006-03-23 03:00:38 -08001268 mutex_init(&lo->lo_ctl_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 lo->lo_number = i;
Serge E. Hallyn6c997912006-09-29 01:59:11 -07001270 lo->lo_thread = NULL;
1271 init_waitqueue_head(&lo->lo_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 spin_lock_init(&lo->lo_lock);
1273 disk->major = LOOP_MAJOR;
1274 disk->first_minor = i;
1275 disk->fops = &lo_fops;
1276 sprintf(disk->disk_name, "loop%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 disk->private_data = lo;
1278 disk->queue = lo->lo_queue;
1279 }
1280
1281 /* We cannot fail after we call this, so another loop!*/
1282 for (i = 0; i < max_loop; i++)
1283 add_disk(disks[i]);
1284 printk(KERN_INFO "loop: loaded (max %d devices)\n", max_loop);
1285 return 0;
1286
1287out_mem4:
1288 while (i--)
Al Viro1312f402006-03-12 11:02:03 -05001289 blk_cleanup_queue(loop_dev[i].lo_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 i = max_loop;
1291out_mem3:
1292 while (i--)
1293 put_disk(disks[i]);
1294 kfree(disks);
1295out_mem2:
1296 kfree(loop_dev);
1297out_mem1:
1298 unregister_blkdev(LOOP_MAJOR, "loop");
1299 printk(KERN_ERR "loop: ran out of memory\n");
1300 return -ENOMEM;
1301}
1302
1303static void loop_exit(void)
1304{
1305 int i;
1306
1307 for (i = 0; i < max_loop; i++) {
1308 del_gendisk(disks[i]);
Al Viro1312f402006-03-12 11:02:03 -05001309 blk_cleanup_queue(loop_dev[i].lo_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 put_disk(disks[i]);
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if (unregister_blkdev(LOOP_MAJOR, "loop"))
1313 printk(KERN_WARNING "loop: cannot unregister blkdev\n");
1314
1315 kfree(disks);
1316 kfree(loop_dev);
1317}
1318
1319module_init(loop_init);
1320module_exit(loop_exit);
1321
1322#ifndef MODULE
1323static int __init max_loop_setup(char *str)
1324{
1325 max_loop = simple_strtol(str, NULL, 0);
1326 return 1;
1327}
1328
1329__setup("max_loop=", max_loop_setup);
1330#endif